diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 08b5e746b2c8948534ef278fab3dfda463e59dbf..fb303884e90ebd5d79f1a5effad3df5f98443334 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -6,6 +6,13 @@ macro_log_feature(XKB_FOUND "XKB" "X keyboard extension" "http://www.x.org" FALS configure_file (config-konsole.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-konsole.h ) +############### Load the CTest options ############### +# CTestCustom.cmake has to be in the CTEST_BINARY_DIR. +# in the KDE build system, this is the same as CMAKE_BINARY_DIR. +configure_file(tests/CTestCustom.cmake +${CMAKE_CURRENT_BINARY_DIR}/tests/CTestCustom.cmake) + + ### Tests add_subdirectory(tests) diff --git a/src/tests/CTestCustom.cmake b/src/tests/CTestCustom.cmake new file mode 100644 index 0000000000000000000000000000000000000000..111b849564637d3309a5f9f34f5907e53a66f559 --- /dev/null +++ b/src/tests/CTestCustom.cmake @@ -0,0 +1,3 @@ +SET (CTEST_CUSTOM_TESTS_IGNORE + DBusTest +)