axmol/samples/TestJavascript/proj.android/build_native.sh

87 lines
1.6 KiB
Bash
Raw Normal View History

2012-08-01 08:02:09 +08:00
APPNAME="TestJavascript"
# options
2012-05-28 16:58:16 +08:00
buildexternalsfromsource=
PARALLEL_BUILD_FLAG=
2012-05-28 16:58:16 +08:00
usage(){
cat << EOF
usage: $0 [options]
2012-08-01 08:02:09 +08:00
Build C/C++ code for $APPNAME using Android NDK
2012-05-28 16:58:16 +08:00
OPTIONS:
-s Build externals from source
-p Run make with -j8 option to take advantage of multiple processors
2012-05-28 16:58:16 +08:00
-h this help
EOF
}
while getopts "sph" OPTION; do
2012-05-28 16:58:16 +08:00
case "$OPTION" in
s)
buildexternalsfromsource=1
;;
p)
PARALLEL_BUILD_FLAG=\-j8
;;
2012-05-28 16:58:16 +08:00
h)
usage
exit 0
;;
esac
done
# exit this script if any commmand fails
set -e
2012-08-01 08:02:09 +08:00
# paths
2012-08-21 16:45:23 +08:00
if [ -z "${NDK_ROOT+aaa}" ];then
echo "please define NDK_ROOT"
exit 1
2012-05-28 16:58:16 +08:00
fi
2012-08-21 16:45:23 +08:00
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2012-08-01 08:02:09 +08:00
# ... use paths relative to current directory
2012-08-21 16:45:23 +08:00
COCOS2DX_ROOT="$DIR/../../.."
APP_ROOT="$DIR/.."
APP_ANDROID_ROOT="$DIR"
BINDINGS_JS_ROOT="$APP_ROOT/../../scripting/javascript/bindings/js"
2012-05-28 16:58:16 +08:00
echo
echo "Paths"
echo " NDK_ROOT = $NDK_ROOT"
echo " COCOS2DX_ROOT = $COCOS2DX_ROOT"
echo " APP_ROOT = $APP_ROOT"
echo " APP_ANDROID_ROOT = $APP_ANDROID_ROOT"
echo
2012-05-28 16:58:16 +08:00
# Debug
set -x
2012-05-28 16:58:16 +08:00
# make sure assets is exist
2012-08-01 08:02:09 +08:00
if [ -d "$APP_ANDROID_ROOT"/assets ]; then
rm -rf "$APP_ANDROID_ROOT"/assets
2012-05-28 16:58:16 +08:00
fi
2012-08-01 08:02:09 +08:00
mkdir "$APP_ANDROID_ROOT"/assets
mkdir "$APP_ANDROID_ROOT"/assets/res
2012-05-28 16:58:16 +08:00
2012-11-16 14:14:05 +08:00
# copy src/**/*.js from cocos2d-js-tests into assets' root
cp -rf "$APP_ROOT"/cocos2d-js-tests/tests/* "$APP_ANDROID_ROOT"/assets
# copy bindings/*.js into assets' root
cp -f "$BINDINGS_JS_ROOT"/* "$APP_ANDROID_ROOT"/assets
echo "Using prebuilt externals"
echo
set -x
"$NDK_ROOT"/ndk-build $PARALLEL_BUILD_FLAG -C "$APP_ANDROID_ROOT" $* \
2012-09-19 08:08:37 +08:00
"NDK_MODULE_PATH=${COCOS2DX_ROOT}:${COCOS2DX_ROOT}/cocos2dx/platform/third_party/android/prebuilt" \
NDK_LOG=0 V=0