From 221a7c8e42baa563bb70de626f288a8866da8375 Mon Sep 17 00:00:00 2001 From: DeftDawg Date: Sat, 8 Oct 2022 11:59:01 -0400 Subject: [PATCH] - BuildLinux Improvements: - Add BBL_RELEASE_TO_PUBLIC for non-debug builds - Increase cmake jobs --- BuildLinux.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BuildLinux.sh b/BuildLinux.sh index 1df77f6c6f..6bdbf14647 100755 --- a/BuildLinux.sh +++ b/BuildLinux.sh @@ -3,6 +3,7 @@ set -e # exit on first error export ROOT=`pwd` export NCORES=`nproc --all` +export CMAKE_BUILD_PARALLEL_LEVEL=${NCORES} FOUND_GTK2=$(dpkg -l libgtk* | grep gtk2) FOUND_GTK3=$(dpkg -l libgtk* | grep gtk-3) @@ -192,6 +193,8 @@ then if [[ -n "$BUILD_DEBUG" ]] then BUILD_ARGS="${BUILD_ARGS} -DCMAKE_BUILD_TYPE=Debug" + else + BUILD_ARGS="${BUILD_ARGS} -DBBL_RELEASE_TO_PUBLIC=1" fi # cmake