crdt_tests/vim_research/CMakeLists.txt

30 lines
481 B
CMake
Raw Permalink Normal View History

cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
project(vim_research CXX C)
########################################
add_executable(vim_research_test1
./test1.cpp
)
target_link_libraries(vim_research_test1 PUBLIC
crdt_version0
zed_net
nlohmann_json::nlohmann_json
)
2022-12-17 19:57:10 +01:00
########################################
add_executable(vim_research_test2
./test2.cpp
)
target_link_libraries(vim_research_test2 PUBLIC
crdt_version0
zed_net
nlohmann_json::nlohmann_json
toxcore
)