summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/CMakeLists.txt7
1 files changed, 2 insertions, 5 deletions
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt
index c8e178a..970990f 100644
--- a/common/CMakeLists.txt
+++ b/common/CMakeLists.txt
@@ -28,9 +28,7 @@ set(CMAKE_CXX_VISIBILITY_PRESET default)
28 28
29install(EXPORT SinkTargets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" FILE SinkTargets.cmake) 29install(EXPORT SinkTargets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" FILE SinkTargets.cmake)
30 30
31set(storage_SRCS storage_lmdb.cpp) 31add_library(${PROJECT_NAME} SHARED
32
33set(command_SRCS
34 store.cpp 32 store.cpp
35 secretstore.cpp 33 secretstore.cpp
36 notifier.cpp 34 notifier.cpp
@@ -84,9 +82,8 @@ set(command_SRCS
84 propertyparser.cpp 82 propertyparser.cpp
85 utils.cpp 83 utils.cpp
86 fulltextindex.cpp 84 fulltextindex.cpp
87 ${storage_SRCS}) 85 storage_lmdb.cpp)
88 86
89add_library(${PROJECT_NAME} SHARED ${command_SRCS})
90 87
91generate_flatbuffers( 88generate_flatbuffers(
92 ${PROJECT_NAME} 89 ${PROJECT_NAME}