From 1f4ada2a428c8d4af3cc0f12086700cda6e19e3a Mon Sep 17 00:00:00 2001 From: Etienne Samson Date: Fri, 20 Apr 2018 23:11:23 +0200 Subject: [PATCH] travis: let cmake perform the build & install step The goal is to let cmake manage the parallelism --- script/cibuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/cibuild.sh b/script/cibuild.sh index 42705b154..43ca976cc 100755 --- a/script/cibuild.sh +++ b/script/cibuild.sh @@ -25,4 +25,4 @@ mkdir _build cd _build # shellcheck disable=SC2086 cmake .. -DBUILD_EXAMPLES=ON -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS || exit $? -make -j2 install || exit $? +cmake --build . --target install || exit $?