From 021dde561b5ce86820013c681ff554b07590b052 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Mon, 4 Jan 2016 23:24:43 +0100 Subject: Prototype of the action system --- framework/actions/CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 framework/actions/CMakeLists.txt (limited to 'framework/actions/CMakeLists.txt') diff --git a/framework/actions/CMakeLists.txt b/framework/actions/CMakeLists.txt new file mode 100644 index 00000000..1151878c --- /dev/null +++ b/framework/actions/CMakeLists.txt @@ -0,0 +1,14 @@ +set(SRCS + actionplugin.cpp + action.cpp + actionhandler.cpp + actionbroker.cpp + context.cpp +) + +add_library(actionplugin SHARED ${SRCS}) + +qt5_use_modules(actionplugin Core Quick Qml) + +install(TARGETS actionplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/kube/actions) +install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/kube/actions) -- cgit v1.2.3