2026-03-30 21:43:47 +11:00
|
|
|
cmake_minimum_required(VERSION 3.20)
|
|
|
|
|
project(ANSCustomModels LANGUAGES CXX)
|
|
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
|
|
|
|
|
|
add_subdirectory(ANSCustomHelmetDetection)
|
|
|
|
|
add_subdirectory(ANSCustomFireNSmokeDetection)
|
|
|
|
|
add_subdirectory(ANSCustomWeaponDetection)
|
2026-04-05 14:30:43 +10:00
|
|
|
|
|
|
|
|
# Unit & integration tests (Google Test)
|
|
|
|
|
option(BUILD_TESTS "Build unit tests" ON)
|
|
|
|
|
if(BUILD_TESTS)
|
|
|
|
|
add_subdirectory(tests)
|
|
|
|
|
endif()
|