Files
blank-slate/test/CMakeLists.txt
McMassiveNZ addb00907e Blind fix for failing linux
Blind fix for Linux failing to generate a CMake project on the CI
2022-12-06 23:28:08 +01:00

15 lines
213 B
CMake

include(${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)