diff options
Diffstat (limited to 'synchronizer/CMakeLists.txt')
-rw-r--r-- | synchronizer/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
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 @@ | |||
1 | project(akonadinext_synchronizer) | ||
2 | |||
3 | include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}) | ||
4 | |||
5 | set(akonadinextsynchronizer_SRCS | ||
6 | main.cpp | ||
7 | listener.cpp | ||
8 | ) | ||
9 | |||
10 | add_executable(${PROJECT_NAME} ${akonadinextsynchronizer_SRCS}) | ||
11 | target_link_libraries(${PROJECT_NAME} akonadinextcommon) | ||
12 | qt5_use_modules(${PROJECT_NAME} Widgets Network) | ||
13 | install(TARGETS ${PROJECT_NAME} DESTINATION bin) | ||