Commit 4720d4a2 authored by Milo Yip's avatar Milo Yip

Change line ending

parent e5cd989d
#!/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
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
cd "${TRAVIS_BUILD_DIR}"
doxygen build/Doxyfile
cd "${TRAVIS_BUILD_DIR}"
doxygen build/Doxyfile
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment