summaryrefslogtreecommitdiffstats
path: root/dcop/tests/CMakeLists.txt
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2016-06-28 06:14:50 +0300
committerSlávek Banko <slavek.banko@axis.cz>2017-01-29 02:27:14 +0100
commit26d76a4c048d99e282356616ca8e1e5ad45a7f53 (patch)
treeca0d2e03b2153f1b4c8a6d5726c1c56f6d3b69b5 /dcop/tests/CMakeLists.txt
parent0c64a776ddecfa33a37318e79b8811d9774579ae (diff)
downloadtdelibs-26d76a4c048d99e282356616ca8e1e5ad45a7f53.tar.gz
tdelibs-26d76a4c048d99e282356616ca8e1e5ad45a7f53.zip
Add dcop tests to cmake
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
Diffstat (limited to 'dcop/tests/CMakeLists.txt')
-rw-r--r--dcop/tests/CMakeLists.txt62
1 files changed, 62 insertions, 0 deletions
diff --git a/dcop/tests/CMakeLists.txt b/dcop/tests/CMakeLists.txt
new file mode 100644
index 000000000..c7bbbcfee
--- /dev/null
+++ b/dcop/tests/CMakeLists.txt
@@ -0,0 +1,62 @@
+#################################################
+#
+# (C) 2016 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${TQT_INCLUDE_DIRS}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_SOURCE_DIR}/dcop
+ ${CMAKE_SOURCE_DIR}/tdecore
+ ${CMAKE_BINARY_DIR}/tdecore
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### checks ####################################
+
+tde_add_check_executable( dcop_test AUTOMOC
+ SOURCES test.cpp ${CMAKE_CURRENT_BINARY_DIR}/test.skel ${CMAKE_CURRENT_BINARY_DIR}/test.h
+ LINK tdecore-shared
+)
+
+tde_add_check_executable( driver AUTOMOC
+ SOURCES driver.cpp ${CMAKE_CURRENT_BINARY_DIR}/test.stub ${CMAKE_CURRENT_BINARY_DIR}/test.h
+ LINK tdecore-shared
+)
+
+add_test( NAME dcop-tests COMMAND sh -x "${CMAKE_CURRENT_SOURCE_DIR}/run-tests.sh"
+ WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" )
+
+
+##### test.h and files ##########################
+
+add_custom_command(
+ OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/test.h ${CMAKE_CURRENT_BINARY_DIR}/shell.generated
+ COMMAND perl "${CMAKE_CURRENT_SOURCE_DIR}/generate.pl"
+ <"${CMAKE_CURRENT_SOURCE_DIR}/testcases"
+ DEPENDS testcases generate.pl
+ WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
+)
+
+# a hack because *.skel and *.stub files have to be located the same place with the *.h
+add_custom_command(
+ OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/test.skel
+ COMMAND ${CMAKE_COMMAND} -E copy_file
+ ${CMAKE_CURRENT_SOURCE_DIR}/test.skel ${CMAKE_CURRENT_BINARY_DIR}/
+)
+
+add_custom_command(
+ OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/test.stub
+ COMMAND ${CMAKE_COMMAND} -E copy_file
+ ${CMAKE_CURRENT_SOURCE_DIR}/test.stub ${CMAKE_CURRENT_BINARY_DIR}/
+)