From 83de1f2de918aa53392c6c6d212831dff3bcfdb1 Mon Sep 17 00:00:00 2001 From: "Alexander \"Ace\" Olofsson" Date: Sun, 28 Aug 2016 21:52:32 +0200 Subject: [PATCH] And use the correct OpenAL version Should really have run these on a clean dir locally, but time constraints... --- CI/before_script.msvc.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index 04f89ccd4..a7df33b23 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -491,16 +491,16 @@ cd $DEPS echo # OpenAL -printf "OpenAL-Soft 1.16.0... " +printf "OpenAL-Soft 1.17.2... " { - if [ -d openal-soft-1.16.0-bin ]; then + if [ -d openal-soft-1.17.2-bin ]; then printf "Exists. " elif [ -z $SKIP_EXTRACT ]; then - rm -rf openal-soft-1.16.0-bin - eval 7z x -y OpenAL-Soft-1.16.0.zip $STRIP + rm -rf openal-soft-1.17.2-bin + eval 7z x -y OpenAL-Soft-1.17.2.zip $STRIP fi - OPENAL_SDK="$(real_pwd)/openal-soft-1.16.0-bin" + OPENAL_SDK="$(real_pwd)/openal-soft-1.17.2-bin" add_cmake_opts -DOPENAL_INCLUDE_DIR="$OPENAL_SDK/include/AL" \ -DOPENAL_LIBRARY="$OPENAL_SDK/libs/Win$BITS/OpenAL32.lib"