16 lines
342 B
CMake
16 lines
342 B
CMake
cmake_minimum_required(VERSION 3.26.0)
|
|
project(gtest_Graphics VERSION 0.1.0 LANGUAGES C CXX)
|
|
|
|
include(GoogleTest)
|
|
|
|
if (NB_BUILD_TESTS)
|
|
add_executable(TestCore
|
|
testErrors.cpp
|
|
testProcesses.cpp
|
|
)
|
|
target_link_libraries(TestCore
|
|
NBCore
|
|
GTest::gtest_main
|
|
)
|
|
gtest_discover_tests(TestCore)
|
|
endif() |