add jpaper bench for v0

This commit is contained in:
2022-12-22 18:18:56 +01:00
parent 175042eb7c
commit a597193529
5 changed files with 276 additions and 0 deletions

28
bench/CMakeLists.txt Normal file
View File

@@ -0,0 +1,28 @@
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
project(crdt_bench CXX C)
########################################
add_executable(crdt_bench_jpaper_v0
./v0_jpaper.cpp
)
target_link_libraries(crdt_bench_jpaper_v0 PUBLIC
crdt_version0
nlohmann_json::nlohmann_json
)
########################################
if (FALSE)
add_executable(crdt_bench_jpaper_v1
./test1.cpp
)
target_link_libraries(crdt_bench_jpaper_v1 PUBLIC
crdt_version1
nlohmann_json::nlohmann_json
)
endif()