From f626401e6ddb00d7e4dea5b303766c7fe2caecdc Mon Sep 17 00:00:00 2001 From: Dragios Date: Thu, 12 May 2016 09:56:28 +0800 Subject: [PATCH] Update .travis-deps.sh to use CMake 3.5 --- .travis-deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis-deps.sh b/.travis-deps.sh index 4a79feb70..9b3cb3365 100755 --- a/.travis-deps.sh +++ b/.travis-deps.sh @@ -9,7 +9,7 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then export CXX=g++-5 mkdir -p $HOME/.local - curl -L http://www.cmake.org/files/v3.1/cmake-3.1.0-Linux-i386.tar.gz \ + curl -L http://www.cmake.org/files/v3.5/cmake-3.5.2-Linux-i386.tar.gz \ | tar -xz -C $HOME/.local --strip-components=1 ( @@ -21,6 +21,6 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then elif [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update > /dev/null # silence the very verbose output brew unlink cmake - brew install cmake31 qt5 sdl2 dylibbundler + brew install cmake35 qt5 sdl2 dylibbundler gem install xcpretty fi