mirror of
https://github.com/QuasarApp/qca.git
synced 2025-05-14 11:29:33 +00:00
31 lines
976 B
CMake
31 lines
976 B
CMake
if(WITH_cyrus-sasl_PLUGIN STREQUAL "yes")
|
|
find_package(Sasl2 REQUIRED)
|
|
else(WITH_cyrus-sasl_PLUGIN STREQUAL "yes")
|
|
find_package(Sasl2)
|
|
endif(WITH_cyrus-sasl_PLUGIN STREQUAL "yes")
|
|
|
|
if(SASL2_FOUND)
|
|
enable_plugin("cyrus-sasl")
|
|
|
|
set(QCA_SASL_SOURCES qca-cyrus-sasl.cpp)
|
|
include_directories( ${SASL2_INCLUDE_DIR} )
|
|
add_library(qca-cyrus-sasl ${PLUGIN_TYPE} ${QCA_SASL_SOURCES})
|
|
|
|
if(APPLE AND ${PLUGIN_TYPE} STREQUAL "MODULE")
|
|
set_property(TARGET qca-cyrus-sasl PROPERTY SUFFIX ".dylib")
|
|
endif()
|
|
|
|
target_link_libraries(qca-cyrus-sasl Qt5::Core ${QCA_LIB_NAME} ${SASL2_LIBRARIES})
|
|
|
|
if(NOT DEVELOPER_MODE)
|
|
install(TARGETS qca-cyrus-sasl
|
|
LIBRARY DESTINATION "${QCA_CRYPTO_INSTALL_DIR}"
|
|
ARCHIVE DESTINATION "${QCA_CRYPTO_INSTALL_DIR}"
|
|
RUNTIME DESTINATION "${QCA_CRYPTO_INSTALL_DIR}")
|
|
|
|
install_pdb(qca-cyrus-sasl ${QCA_CRYPTO_INSTALL_DIR})
|
|
endif()
|
|
else(SASL2_FOUND)
|
|
disable_plugin("cyrus-sasl")
|
|
endif(SASL2_FOUND)
|