2014-05-19 08:58:50 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
2014-12-16 05:30:37 +05:30
|
|
|
set -x
|
2014-05-19 08:58:50 +05:30
|
|
|
|
|
|
|
#if OS is linux or is not set
|
2015-03-07 05:24:09 +05:30
|
|
|
if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
|
2016-06-17 18:40:34 +05:30
|
|
|
export CC=gcc-6
|
|
|
|
export CXX=g++-6
|
2015-07-11 03:51:39 +05:30
|
|
|
mkdir -p $HOME/.local
|
2015-07-11 04:34:28 +05:30
|
|
|
|
2016-06-30 23:29:32 +05:30
|
|
|
curl -L http://www.cmake.org/files/v3.2/cmake-3.2.0-Linux-i386.tar.gz \
|
2015-07-11 04:34:28 +05:30
|
|
|
| tar -xz -C $HOME/.local --strip-components=1
|
|
|
|
|
2014-08-24 06:52:05 +05:30
|
|
|
(
|
2016-03-01 22:54:18 +05:30
|
|
|
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-11 03:51:39 +05:30
|
|
|
make -j4 && make install
|
2014-08-24 06:52:05 +05:30
|
|
|
)
|
2015-03-07 05:24:09 +05:30
|
|
|
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
2015-07-17 08:18:11 +05:30
|
|
|
brew update > /dev/null # silence the very verbose output
|
2016-04-25 07:10:12 +05:30
|
|
|
brew unlink cmake
|
2016-06-30 23:29:32 +05:30
|
|
|
brew install cmake qt5 sdl2 dylibbundler
|
2015-06-02 06:57:22 +05:30
|
|
|
gem install xcpretty
|
2014-05-19 08:58:50 +05:30
|
|
|
fi
|