lol

cmake: enable parallel building of cmake projects by default

+5
+5
pkgs/development/tools/build-managers/cmake/setup-hook.sh
··· 59 59 60 60 cmake ${cmakeDir:-.} $cmakeFlags "${cmakeFlagsArray[@]}" 61 61 62 + if ! [[ -v enableParallelBuilding ]]; then 63 + enableParallelBuilding=1 64 + echo "cmake: enabled parallel building" 65 + fi 66 + 62 67 runHook postConfigure 63 68 } 64 69