docs: Add 6, update 4 and remove 2 files
Some checks failed
Build-Test-Publish / build (linux/amd64) (push) Failing after 59s
Build-Test-Publish / build (linux/arm64) (push) Failing after 2m45s

This commit is contained in:
j842
2025-08-17 21:01:38 +12:00
parent ed9bc9ba21
commit efd11657ac
12 changed files with 323 additions and 179 deletions

17
source/build_local.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# This script now uses Docker for consistent builds
# For direct builds, use the Docker-based build.sh script in the parent directory
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
PARENT_DIR="$(dirname "${SCRIPT_DIR}")"
echo "Using Docker-based build system..."
echo "Building debug version for native architecture..."
# Run the Docker build with debug settings
CMAKE_BUILD_TYPE=Debug INSTALL_LOCAL=true "${PARENT_DIR}/build.sh"
echo "Build process completed!"