chore: remove unity and fetch instead
All checks were successful
CI / build (pull_request) Successful in 15s
CI / build (push) Successful in 15s

This commit was merged in pull request #14.
This commit is contained in:
2026-03-16 15:04:03 +01:00
parent acbbbc4436
commit da2539692a
6 changed files with 10 additions and 4622 deletions

View File

@@ -1,8 +1,15 @@
cmake_minimum_required(VERSION 3.10)
add_subdirectory(unity)
include(FetchContent)
set(UNITY_VERSION v2.6.1)
FetchContent_Declare(unity
GIT_REPOSITORY https://github.com/ThrowTheSwitch/Unity.git
GIT_TAG ${UNITY_VERSION}
)
FetchContent_MakeAvailable(unity)
add_executable(test_vector test_vector.c)
target_link_libraries(test_vector PRIVATE curtle Unity)
target_link_libraries(test_vector PRIVATE curtle unity)
add_test(NAME vector_test COMMAND test_vector)