Implement basic map drawing from tileset

This commit is contained in:
2024-12-27 16:13:21 +00:00
parent 4151ca5717
commit fa7315d6b3
3 changed files with 48 additions and 6 deletions

View File

@@ -4,5 +4,9 @@ add_executable(game
set_default_target_options(game)
target_include_directories(game PUBLIC include)
target_link_libraries(game
PRIVATE LibXml2::LibXml2 SDL2::SDL2 SDL2::SDL2main)
target_link_libraries(game PRIVATE
LibXml2::LibXml2
SDL2::SDL2
SDL2::SDL2main
SDL2_image::SDL2_image
)