Use BMP instead of JPG and remove SDL image

This commit is contained in:
2025-05-25 22:56:55 +02:00
parent f0511d3627
commit 3279c7b157
8 changed files with 13 additions and 13 deletions

View File

@@ -5,12 +5,11 @@ project(HansTheGatherer)
# Option to switch real platform vs. SDL implementation...
find_package(SDL3 CONFIG REQUIRED)
find_package(SDL3_image CONFIG REQUIRED)
find_package(flecs CONFIG REQUIRED)
find_package(spdlog CONFIG REQUIRED)
add_executable(HansTheGatherer main.cpp assets.cpp)
target_link_libraries(HansTheGatherer SDL3::SDL3 SDL3_image::SDL3_image flecs::flecs spdlog::spdlog)
target_link_libraries(HansTheGatherer SDL3::SDL3 flecs::flecs spdlog::spdlog)
set_property(TARGET HansTheGatherer PROPERTY CXX_STANDARD 20)