Add some simple tests
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user