tomato-testing/external/sdl/CMakeLists.txt

26 lines
923 B
CMake
Raw Normal View History

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 ?
set(SDL_DISABLE_ANDROID_JAR OFF CACHE INTERNAL "")
2024-04-15 18:12:17 +02:00
FetchContent_Declare(SDL3
GIT_REPOSITORY https://github.com/libsdl-org/SDL
2024-04-27 13:43:39 +02:00
#GIT_TAG 0429f5d6a36fc35b551bcc2acd4a40c2db6dab82 # tip when looking
2024-05-15 14:06:31 +02:00
#GIT_TAG 14f584a94bfd49cf1524db75bf3c419fdf9436cd # tip 26-04-2024
2024-05-28 17:58:24 +02:00
#GIT_TAG 06d6f2cb2518622593570985589700910cf4399f # 13-05-2024 - before
2024-05-15 14:06:31 +02:00
# made changes that break imgui release 1.90.6
#GIT_TAG 1103294d33f47ab4c697bb22a9cf27c79c658630 # tip 15-05-2024
2024-05-28 17:58:24 +02:00
#GIT_TAG aacafd62336363077470f678b6217214b3b49473 # tip 28-05-2024
GIT_TAG 5fa9432b7d1c1722de93e1ab46e7a9569a47071e # tip 27-05-2024 - before changes made breaking sdl_image
2024-04-15 18:12:17 +02:00
FIND_PACKAGE_ARGS # for the future
)
FetchContent_MakeAvailable(SDL3)
endif()
2023-07-25 22:47:22 +02:00