diff options
author | Aaron Seigo <aseigo@kde.org> | 2014-12-07 16:06:23 +0100 |
---|---|---|
committer | Aaron Seigo <aseigo@kde.org> | 2014-12-11 00:55:20 +0100 |
commit | 323f60b25f0872ddee04f52aec374b741dbf9d17 (patch) | |
tree | 26833e06f090b4a43bdc04051fe37e35cbba267b /tests/hawd/CMakeLists.txt | |
parent | fdd74a41929b4343902f1d1dfcd5116534a79f4f (diff) | |
download | sink-323f60b25f0872ddee04f52aec374b741dbf9d17.tar.gz sink-323f60b25f0872ddee04f52aec374b741dbf9d17.zip |
How Are We Doing (hawd) framework
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 | |||