diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2014-12-28 14:44:50 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2014-12-28 14:44:50 +0100 |
commit | 9b2257d680a5e4fa2fda8cf3302f25054a06710e (patch) | |
tree | 9abaf141018eb83d26ce07f5bd0e9436003ce732 /common/CMakeLists.txt | |
parent | c83c2ef64b5a1e4b1dc0102df36687caebb96ff0 (diff) | |
download | sink-9b2257d680a5e4fa2fda8cf3302f25054a06710e.tar.gz sink-9b2257d680a5e4fa2fda8cf3302f25054a06710e.zip |
Buffers wrapped into entity buffer, async command progress tracking.
Diffstat (limited to 'common/CMakeLists.txt')
-rw-r--r-- | common/CMakeLists.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index ec13e07..1a9a812 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt | |||
@@ -8,7 +8,7 @@ generate_flatbuffers( | |||
8 | commands/modifyentity | 8 | commands/modifyentity |
9 | commands/revisionupdate | 9 | commands/revisionupdate |
10 | domain/event | 10 | domain/event |
11 | entitybuffer | 11 | entity |
12 | metadata | 12 | metadata |
13 | ) | 13 | ) |
14 | 14 | ||
@@ -17,10 +17,11 @@ if (STORAGE_unqlite) | |||
17 | set(storage_SRCS unqlite/unqlite.c storage_unqlite.cpp) | 17 | set(storage_SRCS unqlite/unqlite.c storage_unqlite.cpp) |
18 | else (STORAGE_unqlite) | 18 | else (STORAGE_unqlite) |
19 | set(storage_SRCS storage_lmdb.cpp) | 19 | set(storage_SRCS storage_lmdb.cpp) |
20 | set(storage_LIBS lmdb) | 20 | set(storage_LIBS ${lmdb}) |
21 | endif (STORAGE_unqlite) | 21 | endif (STORAGE_unqlite) |
22 | 22 | ||
23 | set(command_SRCS | 23 | set(command_SRCS |
24 | entitybuffer.cpp | ||
24 | clientapi.cpp | 25 | clientapi.cpp |
25 | commands.cpp | 26 | commands.cpp |
26 | console.cpp | 27 | console.cpp |
@@ -35,7 +36,7 @@ add_library(${PROJECT_NAME} SHARED ${command_SRCS}) | |||
35 | generate_export_header(${PROJECT_NAME} BASE_NAME Akonadi2Common EXPORT_FILE_NAME akonadi2common_export.h) | 36 | generate_export_header(${PROJECT_NAME} BASE_NAME Akonadi2Common EXPORT_FILE_NAME akonadi2common_export.h) |
36 | SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX) | 37 | SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX) |
37 | qt5_use_modules(${PROJECT_NAME} Widgets Network) | 38 | qt5_use_modules(${PROJECT_NAME} Widgets Network) |
38 | target_link_libraries(${PROJECT_NAME} ${storage_LIBS}) | 39 | target_link_libraries(${PROJECT_NAME} ${storage_LIBS} akonadi2async) |
39 | install(TARGETS ${PROJECT_NAME} DESTINATION lib) | 40 | install(TARGETS ${PROJECT_NAME} DESTINATION lib) |
40 | 41 | ||
41 | add_subdirectory(test) | 42 | add_subdirectory(test) |