Files
curtle/tests/CMakeLists.txt
Leo Sulzbacher e9df33520a
All checks were successful
CI / build (push) Successful in 13s
feat: add cmake config for building and installing
Reviewed-on: #8
2026-03-15 00:52:26 +01:00

8 lines
208 B
CMake

cmake_minimum_required(VERSION 3.10)
add_subdirectory(unity)
add_executable(test_vector test_vector.c)
target_link_libraries(test_vector PRIVATE curtle Unity)
add_test(NAME vector_test COMMAND test_vector)