summary refs log tree commit diff
path: root/.ci
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2019-12-03 18:31:18 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2019-12-03 18:43:38 +0100
commitf1340f712743171d5d767ffcc4d01455d778dba8 (patch)
tree9a8dc6c2b6bdd30670b383e61c79e3b9555bac08 /.ci
parentAdd debugging to cmake version in ci (diff)
downloadnheko-f1340f712743171d5d767ffcc4d01455d778dba8.tar.xz
Specify to not use boost static libs via command line in ci
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/script.sh3
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