2024-04-21 03:20:49 +02:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Android editor
|
2024-04-21 12:07:29 +02:00
|
|
|
scons production=yes tools=yes target=release_debug custom_modules_shared=no debug_symbols=no platform=android android_arch=armv7 "$@"
|
|
|
|
scons production=yes tools=yes target=release_debug custom_modules_shared=no debug_symbols=no platform=android android_arch=arm64v8 "$@"
|
|
|
|
scons production=yes tools=yes target=release_debug custom_modules_shared=no debug_symbols=no platform=android android_arch=x86 "$@"
|
|
|
|
scons production=yes tools=yes target=release_debug custom_modules_shared=no debug_symbols=no platform=android android_arch=x86_64 "$@"
|
2024-04-21 03:20:49 +02:00
|
|
|
|
|
|
|
pushd platform/android/java/
|
|
|
|
|
|
|
|
./gradlew generatePandemoniumEditor
|
|
|
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
# Android templates release_debug
|
2024-04-21 12:07:29 +02:00
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=android android_arch=armv7 "$@"
|
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=android android_arch=arm64v8 "$@"
|
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=android android_arch=x86 "$@"
|
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=android android_arch=x86_64 "$@"
|
2024-04-21 03:20:49 +02:00
|
|
|
|
|
|
|
pushd platform/android/java/
|
|
|
|
|
|
|
|
./gradlew generatePandemoniumTemplates
|
|
|
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
# Android templates release
|
2024-04-21 12:07:29 +02:00
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=android android_arch=armv7 "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=android android_arch=arm64v8 "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=android android_arch=x86 "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=android android_arch=x86_64 "$@"
|
2024-04-21 03:20:49 +02:00
|
|
|
|
|
|
|
pushd platform/android/java/
|
|
|
|
|
|
|
|
./gradlew generatePandemoniumTemplates
|
|
|
|
|
|
|
|
popd
|
|
|
|
|