From 444d667d22b6a34ea84959e8d60aa559a76db1b0 Mon Sep 17 00:00:00 2001 From: Bret Curtis Date: Sun, 22 Mar 2020 23:07:07 +0100 Subject: [PATCH] give sdl2 2.0.12 for windows a try --- CI/before_script.msvc.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index e9fbb117bc..03595ce6de 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -428,9 +428,9 @@ if [ -z $SKIP_DOWNLOAD ]; then fi # SDL2 - download "SDL 2.0.7" \ - "https://www.libsdl.org/release/SDL2-devel-2.0.7-VC.zip" \ - "SDL2-2.0.7.zip" + download "SDL 2.0.12" \ + "https://www.libsdl.org/release/SDL2-devel-2.0.12-VC.zip" \ + "SDL2-2.0.12.zip" # Google test and mock if [ ! -z $TEST_FRAMEWORK ]; then @@ -697,16 +697,16 @@ fi cd $DEPS echo # SDL2 -printf "SDL 2.0.7... " +printf "SDL 2.0.12... " { - if [ -d SDL2-2.0.7 ]; then + if [ -d SDL2-2.0.12 ]; then printf "Exists. " elif [ -z $SKIP_EXTRACT ]; then - rm -rf SDL2-2.0.7 - eval 7z x -y SDL2-2.0.7.zip $STRIP + rm -rf SDL2-2.0.12 + eval 7z x -y SDL2-2.0.12.zip $STRIP fi - export SDL2DIR="$(real_pwd)/SDL2-2.0.7" - add_runtime_dlls "$(pwd)/SDL2-2.0.7/lib/x${ARCHSUFFIX}/SDL2.dll" + export SDL2DIR="$(real_pwd)/SDL2-2.0.12" + add_runtime_dlls "$(pwd)/SDL2-2.0.12/lib/x${ARCHSUFFIX}/SDL2.dll" echo Done. } cd $DEPS