rapidjson/build/travis_doxygen.sh

18 lines
283 B
Bash
Raw Normal View History

2014-07-08 00:20:10 +08:00
#!/bin/sh
2014-07-08 01:18:38 +08:00
if [ "${config}" == "release64" ] && [ "$CC" == "clang" ]; then
cd /tmp
git clone https://github.com/doxygen/doxygen.git
cd doxygen
./configure
make
make distclean
git pull
./configure
make
sudo make install
2014-07-08 00:20:10 +08:00
2014-07-08 01:18:38 +08:00
cd "${TRAVIS_BUILD_DIR}"
doxygen build/Doxyfile
fi