From 9b2257d680a5e4fa2fda8cf3302f25054a06710e Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Sun, 28 Dec 2014 14:44:50 +0100 Subject: Buffers wrapped into entity buffer, async command progress tracking. --- common/CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'common/CMakeLists.txt') 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( commands/modifyentity commands/revisionupdate domain/event - entitybuffer + entity metadata ) @@ -17,10 +17,11 @@ if (STORAGE_unqlite) set(storage_SRCS unqlite/unqlite.c storage_unqlite.cpp) else (STORAGE_unqlite) set(storage_SRCS storage_lmdb.cpp) - set(storage_LIBS lmdb) + set(storage_LIBS ${lmdb}) endif (STORAGE_unqlite) set(command_SRCS + entitybuffer.cpp clientapi.cpp commands.cpp console.cpp @@ -35,7 +36,7 @@ add_library(${PROJECT_NAME} SHARED ${command_SRCS}) generate_export_header(${PROJECT_NAME} BASE_NAME Akonadi2Common EXPORT_FILE_NAME akonadi2common_export.h) SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX) qt5_use_modules(${PROJECT_NAME} Widgets Network) -target_link_libraries(${PROJECT_NAME} ${storage_LIBS}) +target_link_libraries(${PROJECT_NAME} ${storage_LIBS} akonadi2async) install(TARGETS ${PROJECT_NAME} DESTINATION lib) add_subdirectory(test) -- cgit v1.2.3