From ed20c3082d4fd5e90703e4d6c37093dcecb5cfd1 Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Thu, 20 Nov 2014 16:28:31 +0100 Subject: sketch in the client/resource model --- resource/CMakeLists.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 resource/CMakeLists.txt (limited to 'resource/CMakeLists.txt') diff --git a/resource/CMakeLists.txt b/resource/CMakeLists.txt new file mode 100644 index 0000000..3de51b5 --- /dev/null +++ b/resource/CMakeLists.txt @@ -0,0 +1,15 @@ +project(toynadi_resource) + +include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}) + +set(common_path "../common/") + +set(toynadiresource_SRCS + ${common_path}/console.cpp + main.cpp + listener.cpp +) + +add_executable(${PROJECT_NAME} ${toynadiresource_SRCS}) +qt5_use_modules(${PROJECT_NAME} Widgets Network) +install(TARGETS ${PROJECT_NAME} DESTINATION bin) -- cgit v1.2.3