2014-05-18 22:28:50 +07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
2014-12-15 18:00:37 +07:00
|
|
|
set -x
|
2014-05-18 22:28:50 +07:00
|
|
|
|
|
|
|
#if OS is linux or is not set
|
2015-03-06 17:54:09 +07:00
|
|
|
if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
|
2016-06-17 08:10:34 +07:00
|
|
|
export CC=gcc-6
|
|
|
|
export CXX=g++-6
|
2015-07-10 17:21:39 +07:00
|
|
|
mkdir -p $HOME/.local
|
2015-07-10 18:04:28 +07:00
|
|
|
|
2016-04-24 20:40:12 +07:00
|
|
|
curl -L http://www.cmake.org/files/v3.1/cmake-3.1.0-Linux-i386.tar.gz \
|
2015-07-10 18:04:28 +07:00
|
|
|
| tar -xz -C $HOME/.local --strip-components=1
|
|
|
|
|
2014-08-23 20:22:05 +07:00
|
|
|
(
|
2016-03-01 11:24:18 +07:00
|
|
|
wget http://libsdl.org/release/SDL2-2.0.4.tar.gz -O - | tar xz
|
|
|
|
cd SDL2-2.0.4
|
|
|
|
./configure --prefix=$HOME/.local
|
2015-07-10 17:21:39 +07:00
|
|
|
make -j4 && make install
|
2014-08-23 20:22:05 +07:00
|
|
|
)
|
2015-03-06 17:54:09 +07:00
|
|
|
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
2015-07-16 21:48:11 +07:00
|
|
|
brew update > /dev/null # silence the very verbose output
|
2016-04-24 20:40:12 +07:00
|
|
|
brew unlink cmake
|
|
|
|
brew install cmake31 qt5 sdl2 dylibbundler
|
2015-06-01 20:27:22 +07:00
|
|
|
gem install xcpretty
|
2014-05-18 22:28:50 +07:00
|
|
|
fi
|