Updated SDL to 2.30.0 on Windows, macOS and the Linux AppImage builds

This commit is contained in:
Leon Styhre 2024-02-13 17:07:58 +01:00
parent 6e46154d7d
commit 6369370f82
4 changed files with 13 additions and 13 deletions

View file

@ -230,29 +230,29 @@ cd ..
echo: echo:
echo Setting up SDL echo Setting up SDL
if exist SDL2-2.28.5\ ( if exist SDL2-2.30.0\ (
rmdir /S /Q SDL2-2.28.5 rmdir /S /Q SDL2-2.30.0
) )
if exist SDL2\ ( if exist SDL2\ (
rmdir /S /Q SDL2 rmdir /S /Q SDL2
) )
if exist SDL2-devel-2.28.5-VC.zip ( if exist SDL2-devel-2.30.0-VC.zip (
del SDL2-devel-2.28.5-VC.zip del SDL2-devel-2.30.0-VC.zip
) )
curl -LO https://libsdl.org/release/SDL2-devel-2.28.5-VC.zip curl -LO https://libsdl.org/release/SDL2-devel-2.30.0-VC.zip
7z x SDL2-devel-2.28.5-VC.zip 7z x SDL2-devel-2.30.0-VC.zip
if not exist SDL2-2.28.5\ ( if not exist SDL2-2.30.0\ (
echo SDL directory is missing, aborting. echo SDL directory is missing, aborting.
cd .. cd ..
goto end goto end
) )
rename SDL2-2.28.5 SDL2 rename SDL2-2.30.0 SDL2
cd SDL2 cd SDL2
rename include SDL2 rename include SDL2

View file

@ -13,8 +13,8 @@
# How many CPU threads to use for the compilation. # How many CPU threads to use for the compilation.
JOBS=4 JOBS=4
SDL_RELEASE_TAG=release-2.28.5 SDL_RELEASE_TAG=release-2.30.0
SDL_SHARED_LIBRARY=libSDL2-2.0.so.0.2800.5 SDL_SHARED_LIBRARY=libSDL2-2.0.so.0.3000.0
echo "Building AppImage..." echo "Building AppImage..."

View file

@ -13,8 +13,8 @@
# How many CPU threads to use for the compilation. # How many CPU threads to use for the compilation.
JOBS=4 JOBS=4
SDL_RELEASE_TAG=release-2.28.5 SDL_RELEASE_TAG=release-2.30.0
SDL_SHARED_LIBRARY=libSDL2-2.0.so.0.2800.5 SDL_SHARED_LIBRARY=libSDL2-2.0.so.0.3000.0
echo "Building Steam Deck AppImage..." echo "Building Steam Deck AppImage..."

View file

@ -280,7 +280,7 @@ if [ ! -d SDL ]; then
fi fi
cd SDL cd SDL
git checkout release-2.28.5 git checkout release-2.30.0
ln -s include SDL2 ln -s include SDL2
mkdir build mkdir build
cd .. cd ..