docs: Add 6, update 4 and remove 2 files
This commit is contained in:
17
source/build_local.sh
Executable file
17
source/build_local.sh
Executable 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!"
|
Reference in New Issue
Block a user