initial commit

This commit is contained in:
Josh Lyon
2025-08-12 00:22:40 -06:00
commit 256781587b
6 changed files with 104 additions and 0 deletions

1
deps/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1 @@
include(${CMAKE_CURRENT_SOURCE_DIR}/fetch_sdl.cmake)

9
deps/fetch_sdl.cmake vendored Normal file
View File

@@ -0,0 +1,9 @@
include(FetchContent)
FetchContent_Declare(SDL
GIT_REPOSITORY https://github.com/libsdl-org/SDL.git
GIT_TAG release-3.2.20
GIT_SHALLOW ON
EXCLUDE_FROM_ALL
SYSTEM)
FetchContent_MakeAvailable(SDL)