mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-14 11:31:15 +00:00
14 lines
301 B
CMake
14 lines
301 B
CMake
cmake_minimum_required(VERSION 3.25...4.0 FATAL_ERROR)
|
|
|
|
include(FetchContent)
|
|
|
|
set(FETCHCONTENT_BASE_DIR "build/_deps")
|
|
|
|
FetchContent_Populate(
|
|
SDL3
|
|
GIT_REPOSITORY "https://github.com/libsdl-org/SDL.git"
|
|
GIT_TAG "main"
|
|
SOURCE_DIR "build/_deps/sdl3-src"
|
|
BINARY_DIR "build/_deps/sdl3-build"
|
|
)
|