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

101 lines
2.1 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
# read local.properties
_LOCALPROPERTIES_FILE=$(dirname "$0")"/local.properties"
if [ -f "$_LOCALPROPERTIES_FILE" ]
then
[ -r "$_LOCALPROPERTIES_FILE" ] || die "Fatal Error: $_LOCALPROPERTIES_FILE exists but is unreadable"
# strip out entries with a "." because Bash cannot process variables with a "."
_PROPERTIES=`sed '/\./d' "$_LOCALPROPERTIES_FILE"`
for line in "$_PROPERTIES"; do
declare "$line";
done
fi
2012-08-01 08:02:09 +08:00
# paths
2012-08-21 16:45:23 +08:00
if [ -z "${NDK_ROOT+aaa}" ];then
echo "NDK_ROOT not defined. Please define NDK_ROOT in your environment or in local.properties"
2012-08-21 16:45:23 +08:00
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
COCOS2DX_ROOT="$DIR/../../../.."
2012-08-21 16:45:23 +08:00
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"/../Shared/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