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/tests/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 framework/actions/tests/CMakeLists.txt (limited to 'framework/actions/tests/CMakeLists.txt') diff --git a/framework/actions/tests/CMakeLists.txt b/framework/actions/tests/CMakeLists.txt new file mode 100644 index 00000000..af872a3b --- /dev/null +++ b/framework/actions/tests/CMakeLists.txt @@ -0,0 +1,6 @@ +include_directories(${CMAKE_CURRENT_BINARY_DIR}) +cmake_policy(SET CMP0063 NEW) +add_executable(actiontest actiontest.cpp) +add_test(actiontest sinkactiontest) +qt5_use_modules(actiontest Core Test) +target_link_libraries(actiontest actionplugin) -- cgit v1.2.3