mirror of
https://github.com/Green-Sky/crdt_tests.git
synced 2025-12-06 20:46:34 +01:00
27 lines
468 B
CMake
27 lines
468 B
CMake
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
|
|
)
|
|
|
|
########################################
|
|
|
|
add_executable(crdt_bench_jpaper_v1
|
|
./v1_jpaper.cpp
|
|
)
|
|
|
|
target_link_libraries(crdt_bench_jpaper_v1 PUBLIC
|
|
crdt_version1
|
|
nlohmann_json::nlohmann_json
|
|
)
|
|
|