mirror of https://github.com/axmolengine/axmol.git
22 lines
453 B
Bash
Executable File
22 lines
453 B
Bash
Executable File
# set params
|
|
PLUGIN_ANDROID_ROOT=$(cd "$(dirname "$0")"; pwd)
|
|
|
|
if [ ! "${PLUGIN_ROOT}" ]; then
|
|
PLUGIN_ROOT="$PLUGIN_ANDROID_ROOT"/../..
|
|
fi
|
|
|
|
${PLUGIN_ROOT}/tools/toolsForPublish/checkEnvironment.sh
|
|
source ${PLUGIN_ROOT}/tools/toolsForPublish/environment.sh
|
|
|
|
# build
|
|
"$ANDROID_NDK_ROOT"/ndk-build -C "$PLUGIN_ANDROID_ROOT"
|
|
|
|
echo
|
|
if [ "0" != "$?" ]; then
|
|
echo "Build error occoured!!!"
|
|
exit 1
|
|
fi
|
|
|
|
echo
|
|
echo "Native build action success."
|
|
exit 0 |