mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
13 lines
194 B
Bash
Executable File
13 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# Clean only if explicitly requested
|
|
if [ "$1" = "clean" ]; then
|
|
rm -rf build
|
|
fi
|
|
|
|
# Always build
|
|
cmake --preset=debug .
|
|
cmake --build --preset=debug |