mirror of
https://github.com/Relintai/broken_seals_2d.git
synced 2024-11-11 20:35:10 +01:00
21 lines
522 B
Bash
Executable File
21 lines
522 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export ANDROID_NDK_ROOT=~/SDKs/Android/NDK/android-ndk-r20b
|
|
export ANDROID_NDK_HOME=~/SDKs/Android/NDK/android-ndk-r20b
|
|
export ANDROID_HOME=~/SDKs/Android/SDK
|
|
|
|
cd ./engine
|
|
|
|
scons -j6 platform=android target=release_debug android_arch=armv7 entities_2d=yes
|
|
scons -j6 platform=android target=release_debug android_arch=arm64v8 entities_2d=yes
|
|
scons -j6 platform=android target=release_debug android_arch=x86 entities_2d=yes
|
|
|
|
cd ./platform/android/java
|
|
|
|
./gradlew generateGodotTemplates
|
|
|
|
cd ..
|
|
cd ..
|
|
cd ..
|
|
cd ..
|