mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-17 12:31:41 +08:00
17 lines
351 B
Bash
Executable File
17 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "$SCRIPT_DIR/.."
|
|
|
|
echo "Analyzing Java API..."
|
|
npx tsx tests/analyze-java-api.ts
|
|
|
|
echo "Generating Java SkeletonSerializer..."
|
|
npx tsx tests/generate-java-serializer.ts
|
|
|
|
echo "Generating C++ SkeletonSerializer..."
|
|
npx tsx tests/generate-cpp-serializer.ts
|
|
|
|
echo "Done." |