File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ endif()
2525
2626find_package (jsoncpp REQUIRED )
2727find_package (CURL REQUIRED )
28+ find_library (ZSTD_LIBRARY zstd )
2829
2930find_path (URING_INCLUDE_PATH NAMES liburing.h )
3031find_library (URING_LIB NAMES uring )
@@ -99,9 +100,10 @@ set(ELOQ_STORE_SOURCES
99100 ${ELOQ_STORE_SOURCE_DIR} /object_store.cpp
100101 ${ELOQ_STORE_SOURCE_DIR} /types.cpp
101102 ${ELOQ_STORE_SOURCE_DIR} /kv_options.cpp
103+ ${ELOQ_STORE_SOURCE_DIR} /compression.cpp
102104 ${ELOQ_STORE_SOURCE_DIR} /eloqstore_module.cpp)
103105
104106add_library (eloqstore STATIC ${ELOQ_STORE_SOURCES} ${INI_SOURCES} )
105107
106108target_include_directories (eloqstore PUBLIC ${ELOQ_STORE_INCLUDE} )
107- target_link_libraries (eloqstore PRIVATE ${URING_LIB} Boost::context glog::glog absl::flat_hash_map jsoncpp_lib ${CURL_LIBRARIES} )
109+ target_link_libraries (eloqstore PRIVATE ${URING_LIB} Boost::context glog::glog absl::flat_hash_map jsoncpp_lib ${CURL_LIBRARIES} ${ZSTD_LIBRARY} )
You can’t perform that action at this time.
0 commit comments