NBEngine/engine/NBCore/tests/CMakeLists.txt
2026-04-04 15:26:08 -05:00

15 lines
312 B
CMake

cmake_minimum_required(VERSION 3.26.0)
if (NB_BUILD_TESTS)
enable_testing()
include(GoogleTest)
add_executable(TestCore
testErrors.cpp
testProcesses.cpp
)
target_link_libraries(TestCore
NBCore
GTest::gtest_main
)
gtest_discover_tests(TestCore)
endif()