mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-14 11:25:00 +00:00
82a492b33f
Fixes #1060
9 lines
239 B
CMake
9 lines
239 B
CMake
foreach(plugin ${PLUGINS})
|
|
if ("omemo" STREQUAL ${plugin})
|
|
add_subdirectory(signal-protocol)
|
|
endif ()
|
|
if ("openpgp" STREQUAL ${plugin})
|
|
add_subdirectory(gpgme-vala)
|
|
endif ()
|
|
add_subdirectory(${plugin})
|
|
endforeach(plugin)
|