Simple SDL game loop

This commit is contained in:
2025-05-24 13:37:23 +02:00
parent 16664312e9
commit 9228c9544a
2 changed files with 50 additions and 4 deletions

View File

@@ -5,9 +5,10 @@ project(HansTheGatherer)
# Option to switch real platform vs. SDL implementation...
find_package(SDL3 REQUIRED)
find_package(spdlog REQUIRED)
add_executable(HansTheGatherer main.cpp)
target_link_libraries(HansTheGatherer SDL3::SDL3)
target_link_libraries(HansTheGatherer SDL3::SDL3 spdlog::spdlog)
set_property(TARGET HansTheGatherer PROPERTY CXX_STANDARD 23)
set_property(TARGET HansTheGatherer PROPERTY CXX_STANDARD 20)