- build_debug.cmd / build_release.cmd: Windows batch files with MSVC setup - build_all_debug.sh / build_all_release.sh: Shell wrappers for Git Bash - deploy.sh: Automated release script for Gitea - Update CLAUDE.md with build instructions Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
272 B
Bash
10 lines
272 B
Bash
#!/bin/bash
|
|
# Build XPlor in Release mode
|
|
# This script calls the Windows batch file which sets up MSVC environment
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
# Convert to Windows path and call batch file
|
|
cmd.exe //c "build_release.cmd"
|