Initial commit

This commit is contained in:
William McVicar
2023-05-04 22:33:04 +02:00
committed by GitHub
commit 34126c21a2
22 changed files with 849 additions and 0 deletions

14
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
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)