2014-12-24 16:40:14 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
2015-03-17 11:26:33 +08:00
|
|
|
CONFIG_NAME=doxygen
|
|
|
|
if [ ! -z $1 ]; then
|
|
|
|
CONFIG_NAME=$1
|
|
|
|
fi
|
2014-12-24 16:40:14 +08:00
|
|
|
|
|
|
|
sed -i .bak '/CC_DEPRECATED_ATTRIBUTE CC_DLL/,/NS_CC_END/d' ../../cocos/base/ccUTF8.h
|
|
|
|
|
|
|
|
version=`grep -e 'return' ../../cocos/cocos2d.cpp | awk '{print substr($3,0,length($3)-2)}'`
|
|
|
|
echo $version
|
2015-03-23 14:35:38 +08:00
|
|
|
|
2014-12-24 16:40:14 +08:00
|
|
|
cd ../../docs
|
|
|
|
#we should read cocos2d.cpp and retrieve the version number
|
|
|
|
sed -i .bak "s/3\.0/${version}/g" doxygen.config
|
|
|
|
|
2015-03-17 11:26:33 +08:00
|
|
|
doxygen ${CONFIG_NAME}.config
|
2014-12-24 16:40:14 +08:00
|
|
|
|
2015-03-23 14:35:38 +08:00
|
|
|
#restore the old doxygen.config
|
|
|
|
mv doxygen.config.bak doxygen.config
|
|
|
|
|
|
|
|
#restore the old ccUTF8.h
|
|
|
|
mv ../cocos/base/ccUTF8.h.bak ../cocos/base/ccUTF8.h
|
2014-12-24 16:40:14 +08:00
|
|
|
|
|
|
|
rm debug.txt
|