Files
HansTheGatherer/CMakeLists.txt
2025-05-24 14:11:11 +02:00

16 lines
395 B
CMake

cmake_minimum_required(VERSION 3.24)
project(HansTheGatherer)
# Option to switch real platform vs. SDL implementation...
find_package(SDL3 REQUIRED)
find_package(flecs REQUIRED)
find_package(spdlog REQUIRED)
add_executable(HansTheGatherer main.cpp)
target_link_libraries(HansTheGatherer SDL3::SDL3 flecs::flecs spdlog::spdlog)
set_property(TARGET HansTheGatherer PROPERTY CXX_STANDARD 20)