shift-shell/qmlcomponents/CMakeLists.txt
2015-04-21 14:14:33 +02:00

23 lines
664 B
CMake

project(satellitecomponents)
set(satellitecomponents_SRCS
satellitecomponentsplugin.cpp
applicationlistmodel.cpp
)
add_library(satellitecomponentsplugin SHARED ${satellitecomponents_SRCS})
target_link_libraries(satellitecomponentsplugin
Qt5::Core
Qt5::Widgets
Qt5::Qml
Qt5::Quick
KF5::Service
KF5::Declarative
KF5::I18n)
install(TARGETS satellitecomponentsplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/satellite/components)
install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/satellite/components)
add_subdirectory(modeltest)