Initial commit

This commit is contained in:
William McVicar
2023-04-28 09:00:18 +02:00
committed by GitHub
commit 01457e7e5b
19 changed files with 633 additions and 0 deletions

14
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
include(${CMAKE_SCRIPTS_DIR}/googletest.cmake)
add_executable(
blank-slate-test
test_main.cpp
)
target_link_libraries(
blank-slate-test
gtest_main
)
include(GoogleTest)
gtest_discover_tests(blank-slate-test)