2024-04-15 18:12:17 +02:00
|
|
|
cmake_minimum_required(VERSION 3.16...3.24 FATAL_ERROR)
|
2023-07-25 22:47:22 +02:00
|
|
|
|
2024-04-15 18:12:17 +02:00
|
|
|
include(FetchContent)
|
2023-07-25 22:47:22 +02:00
|
|
|
|
2024-04-15 18:12:17 +02:00
|
|
|
if (NOT TARGET SDL3::SDL3)
|
|
|
|
set(SDL_SHARED OFF CACHE INTERNAL "")
|
|
|
|
set(SDL_STATIC ON CACHE INTERNAL "")
|
|
|
|
#TODO: pic ?
|
|
|
|
|
|
|
|
FetchContent_Declare(SDL3
|
|
|
|
GIT_REPOSITORY https://github.com/libsdl-org/SDL
|
|
|
|
GIT_TAG 0429f5d6a36fc35b551bcc2acd4a40c2db6dab82 # tip when looking
|
|
|
|
FIND_PACKAGE_ARGS # for the future
|
|
|
|
)
|
|
|
|
FetchContent_MakeAvailable(SDL3)
|
|
|
|
endif()
|
2023-07-25 22:47:22 +02:00
|
|
|
|