Add unit testes

This commit is contained in:
2026-04-05 14:30:43 +10:00
parent fed40b0c90
commit f57ed78763
12 changed files with 1013 additions and 216 deletions

View File

@@ -7,3 +7,9 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_subdirectory(ANSCustomHelmetDetection)
add_subdirectory(ANSCustomFireNSmokeDetection)
add_subdirectory(ANSCustomWeaponDetection)
# Unit & integration tests (Google Test)
option(BUILD_TESTS "Build unit tests" ON)
if(BUILD_TESTS)
add_subdirectory(tests)
endif()