2007-05-27 21:12:45 +00:00
|
|
|
# qca-softstore
|
|
|
|
|
2014-01-01 02:10:15 +06:00
|
|
|
enable_plugin("softstore")
|
2013-11-11 21:08:56 +06:00
|
|
|
set(QCA_SOFTSTORE_SOURCES qca-softstore.cpp)
|
|
|
|
my_automoc( QCA_SOFTSTORE_SOURCES )
|
2007-05-27 21:12:45 +00:00
|
|
|
|
2014-01-02 03:50:18 +06:00
|
|
|
add_library(qca-softstore ${PLUGIN_TYPE} ${QCA_SOFTSTORE_SOURCES})
|
2007-05-27 21:12:45 +00:00
|
|
|
|
2013-11-11 21:08:56 +06:00
|
|
|
add_definitions(${SOFTSTOREH_DEFINITIONS})
|
|
|
|
include_directories(${SOFTSTOREH_INCLUDE_DIR})
|
|
|
|
target_link_libraries(qca-softstore ${QT_QTCORE_LIBRARY})
|
|
|
|
target_link_libraries(qca-softstore ${QCA_LIB_NAME})
|
2007-05-27 21:12:45 +00:00
|
|
|
|
2013-11-11 21:08:56 +06:00
|
|
|
install(TARGETS qca-softstore
|
2013-07-24 22:08:12 +06:00
|
|
|
LIBRARY DESTINATION "${QCA_PLUGINS_INSTALL_DIR}"
|
|
|
|
ARCHIVE DESTINATION "${QCA_PLUGINS_INSTALL_DIR}"
|
2013-11-11 21:08:56 +06:00
|
|
|
RUNTIME DESTINATION "${QCA_PLUGINS_INSTALL_DIR}")
|