18 lines
528 B
Bash
Executable File
18 lines
528 B
Bash
Executable File
#!/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!"
|