mirror of
https://github.com/InoriRus/Kyty.git
synced 2026-08-28 05:06:40 +00:00
18 lines
537 B
CMake
18 lines
537 B
CMake
set(SDL_STATIC ON CACHE BOOL "" FORCE)
|
|
set(SDL_SHARED OFF CACHE BOOL "" FORCE)
|
|
set(SDL_TEST OFF CACHE BOOL "" FORCE)
|
|
|
|
add_subdirectory(sdl2 build_sdl2)
|
|
|
|
if (CLANG AND NOT ANDROID)
|
|
target_compile_options(SDL2-static PRIVATE -Wno-pragma-pack -Wno-unused-command-line-argument -Wno-incompatible-function-pointer-types -Wno-unused-const-variable)
|
|
endif()
|
|
|
|
if (MSVC AND NOT CLANG)
|
|
target_compile_options(SDL2-static PRIVATE /wd4028)
|
|
endif()
|
|
|
|
if (ANDROID)
|
|
target_compile_options(SDL2-static PRIVATE -Wno-deprecated-declarations)
|
|
endif()
|