diff options
author | B3n30 <benediktthomas@gmail.com> | 2017-09-19 10:28:57 +0200 |
---|---|---|
committer | B3n30 <benediktthomas@gmail.com> | 2017-09-19 10:28:57 +0200 |
commit | 1aa66ed5eda649ade3abb1781e74592cd10b6d98 (patch) | |
tree | 22ff996edbc98e714fae1e287b0bdbd675f993bb | |
parent | WebService: Verify username and token (#2930) (diff) | |
download | yuzu-1aa66ed5eda649ade3abb1781e74592cd10b6d98.tar yuzu-1aa66ed5eda649ade3abb1781e74592cd10b6d98.tar.gz yuzu-1aa66ed5eda649ade3abb1781e74592cd10b6d98.tar.bz2 yuzu-1aa66ed5eda649ade3abb1781e74592cd10b6d98.tar.lz yuzu-1aa66ed5eda649ade3abb1781e74592cd10b6d98.tar.xz yuzu-1aa66ed5eda649ade3abb1781e74592cd10b6d98.tar.zst yuzu-1aa66ed5eda649ade3abb1781e74592cd10b6d98.zip |
Diffstat (limited to '')
-rw-r--r-- | .travis-build-docker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis-build-docker.sh b/.travis-build-docker.sh index ca6fae42b..01249ace0 100644 --- a/.travis-build-docker.sh +++ b/.travis-build-docker.sh @@ -14,7 +14,7 @@ echo y | sh cmake-3.9.0-Linux-x86_64.sh --prefix=cmake export PATH=/citra/cmake/cmake-3.9.0-Linux-x86_64/bin:$PATH mkdir build && cd build -cmake .. -DCMAKE_BUILD_TYPE=Release +cmake .. -DUSE_SYSTEM_CURL=ON -DCMAKE_BUILD_TYPE=Release make -j4 ctest -VV -C Release |