Files
opengl-starter/test/CMakeLists.txt
William McVicar 34126c21a2 Initial commit
2023-05-04 22:33:04 +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)