summaryrefslogtreecommitdiffstats
path: root/.travis-deps.sh
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-13 23:54:25 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-15 22:34:17 +0100
commitea63b1a8c39ab719423ff5918e178102c59ae7d9 (patch)
treedcf2a494b3fa748aeaac8c742a8104c2831dd07c /.travis-deps.sh
parentClean up CMake library specification (diff)
downloadyuzu-ea63b1a8c39ab719423ff5918e178102c59ae7d9.tar
yuzu-ea63b1a8c39ab719423ff5918e178102c59ae7d9.tar.gz
yuzu-ea63b1a8c39ab719423ff5918e178102c59ae7d9.tar.bz2
yuzu-ea63b1a8c39ab719423ff5918e178102c59ae7d9.tar.lz
yuzu-ea63b1a8c39ab719423ff5918e178102c59ae7d9.tar.xz
yuzu-ea63b1a8c39ab719423ff5918e178102c59ae7d9.tar.zst
yuzu-ea63b1a8c39ab719423ff5918e178102c59ae7d9.zip
Diffstat (limited to '')
-rw-r--r--.travis-deps.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/.travis-deps.sh b/.travis-deps.sh
index b8e8417b2..2ac3a79ce 100644
--- a/.travis-deps.sh
+++ b/.travis-deps.sh
@@ -11,7 +11,11 @@ if [ "$TRAVIS_OS_NAME" = linux -o -z "$TRAVIS_OS_NAME" ]; then
(
git clone https://github.com/glfw/glfw.git --branch 3.0.4 --depth 1
mkdir glfw/build && cd glfw/build
- cmake .. && make -j2 && sudo make install
+ cmake -DBUILD_SHARED_LIBS=ON \
+ -DGLFW_BUILD_EXAMPLES=OFF \
+ -DGLFW_BUILD_TESTS=OFF \
+ ..
+ make -j4 && sudo make install
)
sudo apt-get install lib32stdc++6