mirror of
https://github.com/Green-Sky/crdt_tests.git
synced 2024-11-14 18:13:01 +01:00
30 lines
481 B
CMake
30 lines
481 B
CMake
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
|
|
)
|
|
|
|
########################################
|
|
|
|
add_executable(vim_research_test2
|
|
./test2.cpp
|
|
)
|
|
|
|
target_link_libraries(vim_research_test2 PUBLIC
|
|
crdt_version0
|
|
zed_net
|
|
nlohmann_json::nlohmann_json
|
|
toxcore
|
|
)
|
|
|