From 64cfb8daa16a49cd5cd4b2d2344d85db31739c0e Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 15 Mar 2017 18:42:51 +0100 Subject: Start of a notifications framework --- framework/notifications/CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 framework/notifications/CMakeLists.txt (limited to 'framework/notifications/CMakeLists.txt') diff --git a/framework/notifications/CMakeLists.txt b/framework/notifications/CMakeLists.txt new file mode 100644 index 00000000..ec2f52c2 --- /dev/null +++ b/framework/notifications/CMakeLists.txt @@ -0,0 +1,12 @@ +set(SRCS + notificationplugin.cpp + notificationhandler.cpp +) + +add_library(notificationplugin SHARED ${SRCS}) + +target_link_libraries(notificationplugin sink) +qt5_use_modules(notificationplugin Core Quick Qml) + +install(TARGETS notificationplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/notifications) +install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/notifications) -- cgit v1.2.3