axmol/samples/Cpp/TestCpp/proj.android/build_native.sh

99 lines
2.5 KiB
Bash
Raw Normal View History

2012-08-01 08:02:09 +08:00
APPNAME="TestCpp"
usage(){
cat << EOF
usage: $0 [options]
2012-08-01 08:02:09 +08:00
Build C/C++ code for $APPNAME using Android NDK
OPTIONS:
-h this help
EOF
}
2013-08-10 06:08:57 +08:00
while getopts "h" OPTION; do
case "$OPTION" in
h)
usage
exit 0
;;
esac
done
2011-12-20 16:50:39 +08:00
# 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
2011-12-20 16:50:39 +08:00
fi
# For compatibility of android-ndk-r9, 4.7 was removed from r9
if [ -d "${NDK_ROOT}/toolchains/arm-linux-androideabi-4.7" ]; then
export NDK_TOOLCHAIN_VERSION=4.7
echo "The Selected NDK toolchain version was 4.7 !"
else
if [ -d "${NDK_ROOT}/toolchains/arm-linux-androideabi-4.8" ]; then
export NDK_TOOLCHAIN_VERSION=4.8
echo "The Selected NDK toolchain version was 4.8 !"
else
echo "Couldn't find the gcc toolchain."
exit 1
fi
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-12-20 14:04:49 +08:00
COCOS2DX_ROOT="$DIR/../../../.."
2012-08-21 16:45:23 +08:00
APP_ROOT="$DIR/.."
APP_ANDROID_ROOT="$DIR"
2011-12-20 16:50:39 +08:00
2012-08-01 08:02:09 +08:00
echo "NDK_ROOT = $NDK_ROOT"
echo "COCOS2DX_ROOT = $COCOS2DX_ROOT"
echo "APP_ROOT = $APP_ROOT"
echo "APP_ANDROID_ROOT = $APP_ANDROID_ROOT"
2010-12-20 14:17:51 +08:00
2011-01-19 16:00:19 +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
2011-01-19 16:00:19 +08:00
fi
2012-08-01 08:02:09 +08:00
mkdir "$APP_ANDROID_ROOT"/assets
2011-01-21 15:45:55 +08:00
2011-01-19 16:00:19 +08:00
# copy resources
2012-08-01 08:02:09 +08:00
for file in "$APP_ROOT"/Resources/*
2011-01-21 15:45:55 +08:00
do
2012-08-01 08:02:09 +08:00
if [ -d "$file" ]; then
cp -rf "$file" "$APP_ANDROID_ROOT"/assets
fi
2011-01-21 15:45:55 +08:00
2012-08-01 08:02:09 +08:00
if [ -f "$file" ]; then
cp "$file" "$APP_ANDROID_ROOT"/assets
fi
2011-01-21 15:45:55 +08:00
done
2010-12-20 14:17:51 +08:00
# remove test_image_rgba4444.pvr.gz
2012-08-01 08:02:09 +08:00
rm -f "$APP_ANDROID_ROOT"/assets/Images/test_image_rgba4444.pvr.gz
rm -f "$APP_ANDROID_ROOT"/assets/Images/test_1021x1024_rgba8888.pvr.gz
rm -f "$APP_ANDROID_ROOT"/assets/Images/test_1021x1024_rgb888.pvr.gz
rm -f "$APP_ANDROID_ROOT"/assets/Images/test_1021x1024_rgba4444.pvr.gz
rm -f "$APP_ANDROID_ROOT"/assets/Images/test_1021x1024_a8.pvr.gz
2013-08-10 06:08:57 +08:00
echo "Using prebuilt externals"
"$NDK_ROOT"/ndk-build -C "$APP_ANDROID_ROOT" $* \
"NDK_MODULE_PATH=${COCOS2DX_ROOT}:${COCOS2DX_ROOT}/cocos2dx/platform/third_party/android/prebuilt"