summaryrefslogtreecommitdiffstats
path: root/common/test/CMakeLists.txt
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2015-04-15 23:36:37 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2015-04-15 23:39:01 +0200
commit54e450f7c117e3cbced5773eb732808338b40c0d (patch)
tree0165b73ff2de7cfb47364fbd9731d729f144bafb /common/test/CMakeLists.txt
parent01f8a5f07361c1639c89ad62e6dd5de3c7530379 (diff)
downloadsink-54e450f7c117e3cbced5773eb732808338b40c0d.tar.gz
sink-54e450f7c117e3cbced5773eb732808338b40c0d.zip
Moved clientapitest to tests
Diffstat (limited to 'common/test/CMakeLists.txt')
-rw-r--r--common/test/CMakeLists.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/common/test/CMakeLists.txt b/common/test/CMakeLists.txt
deleted file mode 100644
index 98d4ecc..0000000
--- a/common/test/CMakeLists.txt
+++ /dev/null
@@ -1,15 +0,0 @@
1set(CMAKE_AUTOMOC ON)
2include_directories(${CMAKE_CURRENT_BINARY_DIR})
3
4macro(auto_tests)
5 foreach(_testname ${ARGN})
6 add_executable(${_testname} ${_testname}.cpp ${store_SRCS})
7 qt5_use_modules(${_testname} Core Test)
8 target_link_libraries(${_testname} akonadi2common)
9 add_test(NAME ${_testname} COMMAND ${_testname})
10 endforeach(_testname)
11endmacro(auto_tests)
12
13auto_tests (
14 clientapitest
15)