summaryrefslogtreecommitdiffstats
path: root/tests/hawd/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hawd/CMakeLists.txt')
-rw-r--r--tests/hawd/CMakeLists.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/hawd/CMakeLists.txt b/tests/hawd/CMakeLists.txt
new file mode 100644
index 0000000..8c677c0
--- /dev/null
+++ b/tests/hawd/CMakeLists.txt
@@ -0,0 +1,16 @@
1project(hawd)
2
3include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
4
5set(SRCS
6 datasetdefinition.cpp
7 main.cpp
8 module.cpp
9 state.cpp
10 modules/list.cpp
11)
12
13add_executable(${PROJECT_NAME} ${SRCS})
14qt5_use_modules(${PROJECT_NAME} Core)
15install(TARGETS ${PROJECT_NAME} DESTINATION bin)
16