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

14
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 3.9...3.24 FATAL_ERROR)
project(solanaceae)
add_executable(solanaceae_file2_zstd_test
./test_file_zstd.cpp
)
target_link_libraries(solanaceae_file2_zstd_test PUBLIC
solanaceae_file2_zstd
)
add_test(NAME solanaceae_file2_zstd_test COMMAND solanaceae_file2_zstd_test)