crdt_tests/version0/CMakeLists.txt

25 lines
403 B
CMake
Raw Normal View History

2022-12-13 18:38:30 +01:00
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
project(crdt_version0 CXX C)
########################################
add_executable(test1
2022-12-14 22:06:23 +01:00
./list.hpp
./text_document.hpp
2022-12-13 18:38:30 +01:00
./test1.cpp
)
target_compile_features(test1 PUBLIC cxx_std_17)
2022-12-14 22:06:23 +01:00
########################################
add_executable(test2
./list.hpp
./text_document.hpp
./test2.cpp
)
target_compile_features(test2 PUBLIC cxx_std_17)