14 lines
251 B
CMake
14 lines
251 B
CMake
cmake_minimum_required(VERSION 3.26.0)
|
|
|
|
if (NB_BUILD_TESTS)
|
|
enable_testing()
|
|
include(GoogleTest)
|
|
add_executable(TestWindow
|
|
./TestWindow.cpp
|
|
)
|
|
target_link_libraries(TestWindow
|
|
NBCore
|
|
NBGraphics
|
|
)
|
|
|
|
endif() |