This commit is contained in:
neoapps-dev 2026-03-29 00:04:45 +01:00
parent cb9f4fe624
commit 2b743bfff4

View file

@ -115,7 +115,7 @@ do_cmake_configure() {
do_build() {
info "Building with $(nproc) cores..."
cores=$([ "$BUILD_CI" = "1" ] && echo 2 || nproc)
cores=$([ "$BUILD_CI" = "1" ] && echo 3 || nproc)
cmake --build "$BUILD_DIR" --config "$BUILD_TYPE" -j "$cores"
success "Build complete"
}