mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2024-11-02 17:37:46 +00:00
29 lines
635 B
CMake
29 lines
635 B
CMake
# Build static lib only
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
set(SDL_SHARED OFF)
|
|
set(SDL_STATIC ON)
|
|
|
|
# Fixes _ftol2_sse already defined
|
|
set(SDL_LIBC ON)
|
|
|
|
if (ANDROID)
|
|
set(SDL_STATIC_PIC ON)
|
|
endif()
|
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(sdl2
|
|
GIT_REPOSITORY "https://github.com/libsdl-org/SDL"
|
|
GIT_TAG "release-2.26.1"
|
|
)
|
|
|
|
FetchContent_GetProperties(sdl2)
|
|
if (NOT sdl2_POPULATED)
|
|
FetchContent_Populate(sdl2)
|
|
endif()
|
|
|
|
add_subdirectory(${sdl2_SOURCE_DIR} ${sdl2_BINARY_DIR} EXCLUDE_FROM_ALL)
|
|
|
|
set(SDL2_INCLUDE_DIRS ${sdl2_SOURCE_DIR} ${sdl2_BINARY_DIR} PARENT_SCOPE)
|
|
set(SDL2_LIBRARIES SDL2-static SDL2::SDL2main PARENT_SCOPE)
|