diff options
Diffstat (limited to 'tests/hawd/CMakeLists.txt')
-rw-r--r-- | tests/hawd/CMakeLists.txt | 16 |
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 @@ | |||
1 | project(hawd) | ||
2 | |||
3 | include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}) | ||
4 | |||
5 | set(SRCS | ||
6 | datasetdefinition.cpp | ||
7 | main.cpp | ||
8 | module.cpp | ||
9 | state.cpp | ||
10 | modules/list.cpp | ||
11 | ) | ||
12 | |||
13 | add_executable(${PROJECT_NAME} ${SRCS}) | ||
14 | qt5_use_modules(${PROJECT_NAME} Core) | ||
15 | install(TARGETS ${PROJECT_NAME} DESTINATION bin) | ||
16 | |||