mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-05-01 21:23:52 +00:00
* Getting a bit closer to Version 1.7 * Check and fix for deleting an option pointer directly that is also a help option. It is not common, but could be done
26 lines
501 B
Bash
26 lines
501 B
Bash
#!/bin/env sh
|
|
# (Source me)
|
|
|
|
set -evx
|
|
|
|
DOXYGEN_URL="http://doxygen.nl/files/doxygen-1.8.15.src.tar.gz"
|
|
cd "${DEPS_DIR}"
|
|
|
|
if [[ ! -f "${DEPS_DIR}/doxygen/build/bin/doxygen" ]] ; then
|
|
echo "Downloading Doxygen"
|
|
mkdir -p doxygen
|
|
travis_retry wget --no-check-certificate --quiet -O - "${DOXYGEN_URL}" | tar --strip-components=1 -xz -C doxygen
|
|
cd doxygen
|
|
mkdir -p build
|
|
cd build
|
|
cmake ..
|
|
make -j2
|
|
fi
|
|
|
|
export PATH="${DEPS_DIR}/doxygen/build/bin:${PATH}"
|
|
|
|
cd "${TRAVIS_BUILD_DIR}"
|
|
|
|
set +evx
|
|
|