summaryrefslogtreecommitdiffstats
path: root/tests/SinkTest.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'tests/SinkTest.cmake')
-rw-r--r--tests/SinkTest.cmake17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/SinkTest.cmake b/tests/SinkTest.cmake
new file mode 100644
index 0000000..efc1273
--- /dev/null
+++ b/tests/SinkTest.cmake
@@ -0,0 +1,17 @@
1
2macro(auto_tests)
3 foreach(_testname ${ARGN})
4 add_executable(${_testname} ${_testname}.cpp)
5 add_test(${_testname} ${_testname})
6 qt5_use_modules(${_testname} Core Test Concurrent)
7 target_link_libraries(${_testname} sink libhawd sink_test)
8 endforeach(_testname)
9endmacro(auto_tests)
10
11macro(manual_tests)
12 foreach(_testname ${ARGN})
13 add_executable(${_testname} ${_testname}.cpp)
14 qt5_use_modules(${_testname} Core Test Concurrent)
15 target_link_libraries(${_testname} sink libhawd sink_test)
16 endforeach(_testname)
17endmacro(manual_tests)