2024-03-25 16:39:19 +01:00
|
|
|
cmake_minimum_required(VERSION 3.26)
|
|
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
|
|
|
|
|
|
|
|
add_executable(test_const_vector_constructor const_vector_constructor.test.cpp
|
2024-07-25 10:45:18 +02:00
|
|
|
test_args.h
|
|
|
|
|
test_params.h)
|
2024-03-25 16:39:19 +01:00
|
|
|
target_link_libraries(test_const_vector_constructor const_container test_common)
|
|
|
|
|
add_test(NAME "const_vector constructor" COMMAND test_const_vector_constructor)
|
2024-07-27 23:58:51 +02:00
|
|
|
|
2024-07-28 16:47:57 +02:00
|
|
|
add_executable(test_const_vector_assignment const_vector_assignment.test.cpp
|
|
|
|
|
test_params.h)
|
|
|
|
|
target_link_libraries(test_const_vector_assignment const_container test_common)
|
|
|
|
|
add_test(NAME "const_vector assignment" COMMAND test_const_vector_assignment)
|
|
|
|
|
|
2024-07-27 23:58:51 +02:00
|
|
|
add_executable(test_const_vector_data_access const_vector_data_access.test.cpp
|
|
|
|
|
test_params.h)
|
|
|
|
|
target_link_libraries(test_const_vector_data_access const_container test_common)
|
2024-07-28 16:47:57 +02:00
|
|
|
add_test(NAME "const_vector data access" COMMAND test_const_vector_data_access)
|