From ba7128b30850594c7efb258d1794e377eede364a Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Sun, 1 Jan 2017 13:37:19 +0100 Subject: Instead of using the action system we use controllers only. It's simpler, and the action system was just too complex to use in a typesafe way. --- framework/actions/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'framework/actions/CMakeLists.txt') diff --git a/framework/actions/CMakeLists.txt b/framework/actions/CMakeLists.txt index 9cf0acd1..9fc43b9b 100644 --- a/framework/actions/CMakeLists.txt +++ b/framework/actions/CMakeLists.txt @@ -9,8 +9,10 @@ set(SRCS add_library(actionplugin SHARED ${SRCS}) -target_link_libraries(actionplugin KF5::Async) +target_link_libraries(actionplugin KF5::Async sink) qt5_use_modules(actionplugin Core Quick Qml) install(TARGETS actionplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/actions) install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/actions) + +add_subdirectory(tests) -- cgit v1.2.3