diff options
Diffstat (limited to 'client/CMakeLists.txt')
-rw-r--r-- | client/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt new file mode 100644 index 0000000..186e3fe --- /dev/null +++ b/client/CMakeLists.txt | |||
@@ -0,0 +1,14 @@ | |||
1 | project(toynadi_client) | ||
2 | |||
3 | include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}) | ||
4 | |||
5 | set(common_path "../common/") | ||
6 | |||
7 | set(toynadiclient_SRCS | ||
8 | ${common_path}/console.cpp | ||
9 | main.cpp | ||
10 | resourceaccess.cpp | ||
11 | ) | ||
12 | add_executable(${PROJECT_NAME} ${toynadiclient_SRCS}) | ||
13 | qt5_use_modules(${PROJECT_NAME} Widgets Network) | ||
14 | install(TARGETS ${PROJECT_NAME} DESTINATION bin) | ||