Rename app/ directory to game/

This commit is contained in:
2025-01-02 14:21:12 +00:00
parent 2dd55b5533
commit d9981d8d61
3 changed files with 1 additions and 1 deletions

12
game/CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
add_executable(game main.c)
set_default_target_options(game)
target_include_directories(game PUBLIC include)
target_link_libraries(game PRIVATE
engine
m
LibXml2::LibXml2
SDL2::SDL2
SDL2::SDL2main
SDL2_image::SDL2_image
)