add file2 zstd impl and test

This commit is contained in:
2024-04-12 11:11:09 +02:00
parent f21dd1dbf0
commit 2b5b19cf31
7 changed files with 711 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ endif()
message("II SOLANACEAE_OBJECT_STORE_STANDALONE " ${SOLANACEAE_OBJECT_STORE_STANDALONE})
#option(SOLANACEAE_OBJECT_STORE_BUILD_PLUGINS "Build the solanaceae_object_store plugins" ${SOLANACEAE_OBJECT_STORE_STANDALONE})
option(SOLANACEAE_OBJECT_STORE_BUILD_TESTING "Build the solanaceae_object_store tests" ${SOLANACEAE_OBJECT_STORE_STANDALONE})
if (SOLANACEAE_OBJECT_STORE_STANDALONE)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
@@ -66,6 +67,11 @@ endif()
add_subdirectory(./src)
if (SOLANACEAE_OBJECT_STORE_BUILD_TESTING)
include(CTest)
add_subdirectory(./test)
endif()
#if (SOLANACEAE_OBJECT_STORE_BUILD_PLUGINS)
#add_subdirectory(./plugins)
#endif()