mirror of
https://github.com/Tencent/rapidjson.git
synced 2025-03-10 03:29:59 +01:00
17 lines
264 B
Bash
17 lines
264 B
Bash
#!/bin/sh
|
|
if ["${config}"="release64" && "$CC"="clang"] then exit 0 fi
|
|
|
|
cd /tmp
|
|
git clone https://github.com/doxygen/doxygen.git
|
|
cd doxygen
|
|
./configure
|
|
make
|
|
make distclean
|
|
git pull
|
|
./configure
|
|
make
|
|
sudo make install
|
|
|
|
cd "${TRAVIS_BUILD_DIR}
|
|
doxygen build/Doxyfile
|