axmol/HelloWorld/android/build_native.sh

30 lines
605 B
Bash
Raw Normal View History

2010-12-18 18:23:31 +08:00
# set params
2011-11-23 11:02:18 +08:00
ANDROID_NDK_ROOT=/cygdrive/d/programe/android/ndk/android-ndk-r6b
COCOS2DX_ROOT=/cygdrive/e/cocos2d-x
2010-12-20 14:17:51 +08:00
HELLOWORLD_ROOT=$COCOS2DX_ROOT/HelloWorld/android
2011-01-21 15:45:55 +08:00
# make sure assets is exist
if [ -d $HELLOWORLD_ROOT/assets ]; then
2011-01-21 15:45:55 +08:00
rm -rf $HELLOWORLD_ROOT/assets
2010-12-20 14:17:51 +08:00
fi
2011-01-21 15:45:55 +08:00
mkdir $HELLOWORLD_ROOT/assets
# copy resources
for file in $COCOS2DX_ROOT/HelloWorld/Resource/*
do
if [ -d $file ]; then
cp -rf $file $HELLOWORLD_ROOT/assets
fi
if [ -f $file ]; then
cp $file $HELLOWORLD_ROOT/assets
fi
done
2010-12-18 18:23:31 +08:00
# build
pushd $ANDROID_NDK_ROOT
./ndk-build -C $HELLOWORLD_ROOT $*
2010-12-18 18:23:31 +08:00
popd