Warning, /libraries/qca/plugins/qca-softstore/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # qca-softstore
0002 
0003 enable_plugin("softstore")
0004 set(QCA_SOFTSTORE_SOURCES qca-softstore.cpp)
0005 
0006 add_library(qca-softstore ${PLUGIN_TYPE} ${QCA_SOFTSTORE_SOURCES})
0007 
0008 if(APPLE AND ${PLUGIN_TYPE} STREQUAL "MODULE")
0009   set_property(TARGET qca-softstore PROPERTY SUFFIX ".dylib")
0010 endif()
0011 
0012 add_definitions(${SOFTSTOREH_DEFINITIONS})
0013 include_directories(${SOFTSTOREH_INCLUDE_DIR})
0014 target_link_libraries(qca-softstore Qt${QT_MAJOR_VERSION}::Core)
0015 target_link_libraries(qca-softstore ${QCA_LIB_NAME})
0016 
0017 if(NOT DEVELOPER_MODE)
0018   install(TARGETS qca-softstore
0019           LIBRARY DESTINATION "${QCA_CRYPTO_INSTALL_DIR}"
0020           ARCHIVE DESTINATION "${QCA_CRYPTO_INSTALL_DIR}"
0021           RUNTIME DESTINATION "${QCA_CRYPTO_INSTALL_DIR}")
0022 
0023   install_pdb(qca-softstore ${QCA_CRYPTO_INSTALL_DIR})
0024 endif()