24 lines
462 B
CMake
24 lines
462 B
CMake
cmake_minimum_required(VERSION 3.26.0)
|
|
|
|
if (NB_BUILD_TESTS)
|
|
enable_testing()
|
|
include(GoogleTest)
|
|
add_executable(TestCore
|
|
./testErrors.cpp
|
|
#./testProcesses.cpp
|
|
./testUtils.cpp
|
|
)
|
|
target_link_libraries(TestCore
|
|
NBCore
|
|
GTest::gtest_main
|
|
)
|
|
|
|
add_executable(LoggerTest
|
|
./testLogger.cpp
|
|
)
|
|
target_link_libraries(LoggerTest
|
|
NBCore
|
|
)
|
|
|
|
gtest_discover_tests(TestCore)
|
|
endif() |