Update to match blank slate template

This commit is contained in:
McMassiveNZ
2023-05-28 21:40:03 +02:00
parent a91fb07906
commit 799a0f6069
13 changed files with 55 additions and 95 deletions

View File

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

View File

@@ -1,6 +0,0 @@
#include <gtest/gtest.h>
TEST(testmain, example)
{
EXPECT_EQ(42, 7*6);
}