meson: enable parallel building of meson projects by default

This commit is contained in:
Orivej Desh 2017-12-02 06:49:59 +00:00
parent 031138b7f0
commit 46f57dbc14

View File

@ -13,6 +13,11 @@ mesonConfigurePhase() {
meson build $mesonFlags "${mesonFlagsArray[@]}"
cd build
if ! [[ -v enableParallelBuilding ]]; then
enableParallelBuilding=1
echo "meson: enabled parallel building"
fi
runHook postConfigure
}