11 lines
353 B
CMake
11 lines
353 B
CMake
cmake_minimum_required(VERSION 3.26)
|
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
|
|
add_library(test_common INTERFACE)
|
|
target_include_directories(test_common INTERFACE common_helper)
|
|
target_link_libraries(test_common INTERFACE const_container)
|
|
# target_compile_options(test_common INTERFACE -fconcepts-diagnostics-depth=2) # for debugging
|
|
|
|
add_subdirectory(const_vector)
|