cmake: enable parallel building of cmake projects by default

This commit is contained in:
Orivej Desh 2017-12-02 06:20:07 +00:00
parent 75d70c8372
commit 031138b7f0

View file

@ -59,6 +59,11 @@ cmakeConfigurePhase() {
cmake ${cmakeDir:-.} $cmakeFlags "${cmakeFlagsArray[@]}"
if ! [[ -v enableParallelBuilding ]]; then
enableParallelBuilding=1
echo "cmake: enabled parallel building"
fi
runHook postConfigure
}