diff options
author | Aaron Seigo <aseigo@kde.org> | 2014-12-06 02:33:51 +0100 |
---|---|---|
committer | Aaron Seigo <aseigo@kde.org> | 2014-12-06 02:33:51 +0100 |
commit | 5f40ace47be289c74ad95948c75ed86676158639 (patch) | |
tree | b3c50012da8c7404398050a17724342866a9e83e /synchronizer/CMakeLists.txt | |
parent | 6b8994edba4fcc0663838b90f66fe2ad0f9e134a (diff) | |
download | sink-5f40ace47be289c74ad95948c75ed86676158639.tar.gz sink-5f40ace47be289c74ad95948c75ed86676158639.zip |
resource -> synchronizer
the resource will be the plugin that interacts with the source and store
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) | ||