travis: let cmake perform the build & install step

The goal is to let cmake manage the parallelism
This commit is contained in:
Etienne Samson
2018-04-20 23:11:23 +02:00
parent 234443e38b
commit 1f4ada2a42

View File

@@ -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 $?