fix SDL_main windows thingy

This commit is contained in:
2022-11-01 18:44:34 +01:00
parent 8e5471480c
commit 9af3df5550
8 changed files with 34 additions and 0 deletions

View File

@ -146,3 +146,8 @@ TEST(input_service, input_visualizer) {
sdl_ss.destroyWindow();
}
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}