2010-12-18 18:23:31 +08:00
|
|
|
# set params
|
2011-04-29 09:59:05 +08:00
|
|
|
ANDROID_NDK_ROOT=/cygdrive/e/android-ndk-r5
|
2010-12-18 18:23:31 +08:00
|
|
|
COCOS2DX_ROOT=/cygdrive/d/Work7/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
|
2010-12-20 14:44:38 +08:00
|
|
|
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
|
2011-03-01 19:53:39 +08:00
|
|
|
./ndk-build -C $HELLOWORLD_ROOT $*
|
2010-12-18 18:23:31 +08:00
|
|
|
popd
|
|
|
|
|