diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-13 23:54:25 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-15 22:34:17 +0100 |
commit | ea63b1a8c39ab719423ff5918e178102c59ae7d9 (patch) | |
tree | dcf2a494b3fa748aeaac8c742a8104c2831dd07c | |
parent | Clean up CMake library specification (diff) | |
download | yuzu-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 |
-rw-r--r-- | .travis-deps.sh | 6 |
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 |