Files
UnrealEngine/Engine/Source/ThirdParty/OpenVDB/openvdb-12.0.0/ci/install_doxygen.sh
2025-05-18 13:04:45 +08:00

19 lines
282 B
Bash

#!/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