From 69a12784eb11784a187d18a6a88b23a1026d123c Mon Sep 17 00:00:00 2001 From: skal Date: Tue, 3 Feb 2026 11:25:28 +0100 Subject: build: Enable parallel compilation in build scripts Add -j8 flag to all cmake --build commands to use 8 threads for faster parallel compilation across gen_assets.sh, crunch_demo.sh, and build_win.sh scripts. Co-Authored-By: Claude Sonnet 4.5 --- scripts/crunch_demo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/crunch_demo.sh') diff --git a/scripts/crunch_demo.sh b/scripts/crunch_demo.sh index 8584209..c88e8d9 100755 --- a/scripts/crunch_demo.sh +++ b/scripts/crunch_demo.sh @@ -5,7 +5,7 @@ set -e echo "Building stripped binary..." cmake -S . -B build_strip -DDEMO_STRIP_ALL=ON -cmake --build build_strip +cmake --build build_strip -j8 SRC_BIN="build_strip/demo64k" OUT_BIN="build_strip/demo64k_packed" -- cgit v1.2.3