(macOS) Updated the SDL library version from 2.0.20 to 2.24.0

Also fixed an issue where the wrong SDL release type was built.
This commit is contained in:
Leon Styhre 2022-09-27 17:52:36 +02:00
parent e9fd585312
commit 8d6851d66b
2 changed files with 2 additions and 2 deletions

View file

@ -74,7 +74,7 @@ cd ..
echo "\nBuilding SDL"
cd SDL/build
rm -f CMakeCache.txt
cmake -S .. -B .
cmake -DCMAKE_BUILD_TYPE=Release -S .. -B .
make clean
make -j${JOBS}
cp libSDL2-2.0.dylib ../../..

View file

@ -157,7 +157,7 @@ echo "\nSetting up SDL"
rm -rf SDL
git clone https://github.com/libsdl-org/SDL.git
cd SDL
git checkout release-2.0.20
git checkout release-2.24.0
ln -s include SDL2
mkdir build
cd ..