2024-02-10 19:29:48 +00:00
|
|
|
set(
|
|
|
|
internal_sdl2_options
|
|
|
|
|
2023-08-01 02:29:45 +00:00
|
|
|
"BUILD_SHARED_LIBS ${SRB2_CONFIG_SHARED_INTERNAL_LIBRARIES}"
|
|
|
|
"SDL_SHARED ${SRB2_CONFIG_SHARED_INTERNAL_LIBRARIES}"
|
|
|
|
"SDL_STATIC ${NOT_SRB2_CONFIG_SHARED_INTERNAL_LIBRARIES}"
|
|
|
|
"SDL_TEST OFF"
|
|
|
|
"SDL2_DISABLE_INSTALL ON"
|
|
|
|
)
|
2024-02-10 19:29:48 +00:00
|
|
|
|
|
|
|
if(${CMAKE_SYSTEM} MATCHES Windows)
|
|
|
|
list(APPEND internal_sdl2_options "SDL2_DISABLE_SDL2MAIN OFF")
|
|
|
|
endif()
|
|
|
|
if(${CMAKE_SYSTEM} MATCHES Darwin)
|
|
|
|
list(APPEND internal_sdl2_options "SDL2_DISABLE_SDL2MAIN OFF")
|
|
|
|
endif()
|
|
|
|
if(${CMAKE_SYSTEM} MATCHES Linux)
|
|
|
|
list(APPEND internal_sdl2_options "SDL2_DISABLE_SDL2MAIN ON")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
CPMAddPackage(
|
|
|
|
NAME SDL2
|
2024-02-12 03:10:54 +00:00
|
|
|
VERSION 2.30.0
|
|
|
|
GITHUB_REPOSITORY "libsdl-org/SDL"
|
|
|
|
GIT_TAG release-2.30.0
|
2024-02-10 19:29:48 +00:00
|
|
|
EXCLUDE_FROM_ALL ON
|
|
|
|
OPTIONS ${internal_sdl2_options}
|
|
|
|
)
|