move prots to extra folder

This commit is contained in:
Green Sky 2022-12-13 17:50:18 +01:00
parent 5344fe0ac4
commit a6e1efb314
No known key found for this signature in database
4 changed files with 29 additions and 23 deletions

View File

@ -33,27 +33,5 @@ elseif (${CMAKE_CXX_COMPILER_ID} STREQUAL "MSVC")
endif()
endif()
########################################
add_executable(test1
./test1.cpp
)
target_compile_features(test1 PUBLIC cxx_std_17)
target_link_libraries(test1 PUBLIC
nlohmann_json::nlohmann_json
)
########################################
add_executable(test2
./test2.cpp
)
target_compile_features(test2 PUBLIC cxx_std_17)
target_link_libraries(test2 PUBLIC
nlohmann_json::nlohmann_json
)
add_subdirectory(./prototyping)

View File

@ -0,0 +1,28 @@
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
project(crdt_tests CXX C)
########################################
add_executable(test1
./test1.cpp
)
target_compile_features(test1 PUBLIC cxx_std_17)
target_link_libraries(test1 PUBLIC
nlohmann_json::nlohmann_json
)
########################################
add_executable(test2
./test2.cpp
)
target_compile_features(test2 PUBLIC cxx_std_17)
target_link_libraries(test2 PUBLIC
nlohmann_json::nlohmann_json
)