8 lines
230 B
CMake
8 lines
230 B
CMake
|
|
cmake_minimum_required(VERSION 3.26)
|
||
|
|
|
||
|
|
add_library(test_common INTERFACE)
|
||
|
|
target_include_directories(test_common INTERFACE common_helper)
|
||
|
|
target_link_libraries(test_common INTERFACE const_container)
|
||
|
|
|
||
|
|
add_subdirectory(const_vector)
|