2014-10-28 12:27:54 +00:00
|
|
|
project(satellitecomponents)
|
|
|
|
|
|
|
|
|
|
set(satellitecomponents_SRCS
|
|
|
|
|
satellitecomponentsplugin.cpp
|
|
|
|
|
applicationlistmodel.cpp
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
add_library(satellitecomponentsplugin SHARED ${satellitecomponents_SRCS})
|
2015-03-05 10:41:01 +00:00
|
|
|
target_link_libraries(satellitecomponentsplugin
|
|
|
|
|
Qt5::Core
|
|
|
|
|
Qt5::Widgets
|
|
|
|
|
Qt5::Qml
|
|
|
|
|
Qt5::Quick
|
|
|
|
|
KF5::Service
|
|
|
|
|
KF5::Declarative
|
|
|
|
|
KF5::I18n)
|
2014-10-28 12:27:54 +00:00
|
|
|
|
|
|
|
|
install(TARGETS satellitecomponentsplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/satellite/components)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/satellite/components)
|
|
|
|
|
|
2015-04-21 12:14:33 +00:00
|
|
|
add_subdirectory(modeltest)
|