Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

19 lines
282 B
Bash
Executable File

#!/usr/bin/env bash
set -ex
DOXYGEN_VERSION="$1"
git clone https://github.com/doxygen/doxygen.git
cd doxygen
if [ "$DOXYGEN_VERSION" != "latest" ]; then
git checkout Release_${DOXYGEN_VERSION} -b v${DOXYGEN_VERSION}
fi
mkdir build
cd build
cmake ../.
make -j8
make install