summaryrefslogtreecommitdiffstats
path: root/client/CMakeLists.txt
diff options
context:
space:
mode:
authorAaron Seigo <aseigo@kde.org>2014-11-20 16:28:31 +0100
committerAaron Seigo <aseigo@kde.org>2014-11-20 16:28:31 +0100
commited20c3082d4fd5e90703e4d6c37093dcecb5cfd1 (patch)
treec4ad96fde99c38ee66c0ba7d0f8231bc5326b3d6 /client/CMakeLists.txt
downloadsink-ed20c3082d4fd5e90703e4d6c37093dcecb5cfd1.tar.gz
sink-ed20c3082d4fd5e90703e4d6c37093dcecb5cfd1.zip
sketch in the client/resource model
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)