2024-03-25 16:39:19 +01:00
|
|
|
cmake_minimum_required(VERSION 3.26)
|
|
|
|
|
|
2024-04-22 11:24:40 +02:00
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
|
|
|
|
2024-03-25 16:39:19 +01:00
|
|
|
add_library(test_common INTERFACE)
|
|
|
|
|
target_include_directories(test_common INTERFACE common_helper)
|
|
|
|
|
target_link_libraries(test_common INTERFACE const_container)
|
2024-04-22 11:24:40 +02:00
|
|
|
target_compile_options(test_common INTERFACE -fconcepts-diagnostics-depth=2) # for debugging
|
2024-03-25 16:39:19 +01:00
|
|
|
|
|
|
|
|
add_subdirectory(const_vector)
|