Files
window-starter/test/CMakeLists.txt
McMassiveNZ d4dc5fb2f1 Update ReadMe and add ShouldClose() function
- Removed all references to blank-slate
+ added a ShouldClose() function which gets polled to see if the window should close
2023-05-04 20:39:25 +02:00

15 lines
228 B
CMake

include(${CMAKE_SCRIPTS_DIR}/googletest.cmake)
add_executable(
window-starter-test
test_main.cpp
)
target_link_libraries(
window-starter-test
gtest_main
)
include(GoogleTest)
gtest_discover_tests(window-starter-test)