Use updated SDL2
This commit is contained in:
parent
e47c2a880a
commit
d13dfec7d6
|
|
@ -53,5 +53,6 @@ cmake -S . -B build -G "Unix Makefiles" \
|
|||
-DYUZU_USE_EXTERNAL_FFMPEG=ON \
|
||||
-DYUZU_USE_CPM=ON \
|
||||
-DDYNARMIC_TESTS=ON \
|
||||
-DYUZU_USE_EXTERNAL_SDL2=ON \
|
||||
"${EXTRA_CMAKE_FLAGS[@]}" || exit
|
||||
cmake --build build -t yuzu-cmd_pkg -- -j$NPROC
|
||||
|
|
|
|||
|
|
@ -164,6 +164,12 @@ if (ENABLE_SDL2)
|
|||
if ("${YUZU_SYSTEM_PROFILE}" STREQUAL "steamdeck")
|
||||
set(SDL_PIPEWIRE OFF) # build errors out with this on
|
||||
AddJsonPackage("sdl2_steamdeck")
|
||||
elseif (PLATFORM_PS4)
|
||||
set(PS4 ON)
|
||||
set(ORBIS ON)
|
||||
AddJsonPackage("sdl2_ps4")
|
||||
unset(ORBIS)
|
||||
unset(PS4)
|
||||
else()
|
||||
AddJsonPackage("sdl2_generic")
|
||||
endif()
|
||||
|
|
|
|||
|
|
@ -211,6 +211,14 @@
|
|||
"bundled": true,
|
||||
"skip_updates": "true"
|
||||
},
|
||||
"sdl2_ps4": {
|
||||
"package": "SDL2",
|
||||
"repo": "xinitrcn1/SDL",
|
||||
"sha": "f577141fc4",
|
||||
"key": "ps4",
|
||||
"bundled": true,
|
||||
"skip_updates": true
|
||||
},
|
||||
"moltenvk": {
|
||||
"repo": "V380-Ori/Ryujinx.MoltenVK",
|
||||
"tag": "v%VERSION%-ryujinx",
|
||||
|
|
|
|||
Loading…
Reference in New Issue