diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-12-03 18:31:18 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-12-03 18:43:38 +0100 |
commit | f1340f712743171d5d767ffcc4d01455d778dba8 (patch) | |
tree | 9a8dc6c2b6bdd30670b383e61c79e3b9555bac08 /.ci | |
parent | Add debugging to cmake version in ci (diff) | |
download | nheko-f1340f712743171d5d767ffcc4d01455d778dba8.tar.xz |
Specify to not use boost static libs via command line in ci
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/script.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.ci/script.sh b/.ci/script.sh index fb084305..06536278 100755 --- a/.ci/script.sh +++ b/.ci/script.sh @@ -38,7 +38,8 @@ cmake --build .deps # Build nheko cmake -GNinja -H. -Bbuild \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ - -DCMAKE_INSTALL_PREFIX=.deps/usr + -DCMAKE_INSTALL_PREFIX=.deps/usr \ + -DBUILD_SHARED_LIBS=ON # weird workaround, as the boost 1.70 cmake files seem to be broken? cmake --build build if [ "$TRAVIS_OS_NAME" = "osx" ]; then |