Simple empty window

This commit is contained in:
2026-04-16 10:05:01 -04:00
parent 09623ef864
commit c9cf496c49
9 changed files with 454 additions and 0 deletions

15
cmake/deps.cmake Normal file
View File

@@ -0,0 +1,15 @@
include(FetchContent)
set(SDL3PP_FORCE_BUNDLED ON CACHE BOOL "")
set(SDL3PP_ENABLE_IMAGE OFF CACHE BOOL "")
set(SDL3PP_ENABLE_TTF OFF CACHE BOOL "")
set(SDL3PP_ENABLE_MIXER OFF CACHE BOOL "")
set(SDL3PP_BUILD_EXAMPLES OFF CACHE BOOL "")
set(SDL3PP_BUILD_TESTS OFF CACHE BOOL "")
set(SDL3PP_GEN_DOCS OFF CACHE BOOL "")
FetchContent_Declare(SDL3ppExternal
URL https://github.com/talesm/SDL3pp/releases/download/0.9.2/SDL3pp-0.9.2.tar.gz
OVERRIDE_FIND_PACKAGE
)
FetchContent_MakeAvailable(SDL3ppExternal)