Create basic SDL2 application

This commit is contained in:
2024-12-26 15:34:22 +00:00
parent 12bbdce162
commit 57a9b20449
4 changed files with 61 additions and 0 deletions

8
app/CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
add_executable(game
main.c
)
set_default_target_options(game)
target_include_directories(game PUBLIC include)
target_link_libraries(game
PRIVATE SDL2::SDL2 SDL2::SDL2main)