15 lines
272 B
CMake
15 lines
272 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(tests LANGUAGES C)
|
|
|
|
enable_testing()
|
|
|
|
add_executable(test_vector
|
|
tests/test_vector.c
|
|
)
|
|
|
|
add_executable(test_set
|
|
tests/test_set.c
|
|
)
|
|
|
|
add_test(NAME test_vector COMMAND test_vector)
|
|
add_test(NAME test_set COMMAND test_set) |