From 5f40ace47be289c74ad95948c75ed86676158639 Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Sat, 6 Dec 2014 02:33:51 +0100 Subject: resource -> synchronizer the resource will be the plugin that interacts with the source and store --- synchronizer/CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 synchronizer/CMakeLists.txt (limited to 'synchronizer/CMakeLists.txt') diff --git a/synchronizer/CMakeLists.txt b/synchronizer/CMakeLists.txt new file mode 100644 index 0000000..92cb465 --- /dev/null +++ b/synchronizer/CMakeLists.txt @@ -0,0 +1,13 @@ +project(akonadinext_synchronizer) + +include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}) + +set(akonadinextsynchronizer_SRCS + main.cpp + listener.cpp +) + +add_executable(${PROJECT_NAME} ${akonadinextsynchronizer_SRCS}) +target_link_libraries(${PROJECT_NAME} akonadinextcommon) +qt5_use_modules(${PROJECT_NAME} Widgets Network) +install(TARGETS ${PROJECT_NAME} DESTINATION bin) -- cgit v1.2.3