summaryrefslogtreecommitdiffstats
path: root/client/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'client/CMakeLists.txt')
-rw-r--r--client/CMakeLists.txt14
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 @@
1project(toynadi_client)
2
3include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
4
5set(common_path "../common/")
6
7set(toynadiclient_SRCS
8 ${common_path}/console.cpp
9 main.cpp
10 resourceaccess.cpp
11)
12add_executable(${PROJECT_NAME} ${toynadiclient_SRCS})
13qt5_use_modules(${PROJECT_NAME} Widgets Network)
14install(TARGETS ${PROJECT_NAME} DESTINATION bin)