11 lines
271 B
Bash
Executable file
11 lines
271 B
Bash
Executable file
#!/bin/env -S NOT_SOURCED=1 /bin/sh
|
|
if ! [ "$NOT_SOURCED" = "1" ]; then
|
|
echo "Error: This script must not be sourced!" >&2
|
|
return 1
|
|
fi
|
|
pushd "$(dirname "$0")"
|
|
./setup-android-project.sh
|
|
cd sdl-android-project
|
|
ln -fs "$(dirname "$(pwd)")" ./app/jni
|
|
./gradlew build
|
|
popd
|