You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
codefirst-docdeployer/generators/doxygen.sh

14 lines
295 B

# == DOXYGEN GENERATOR ==
generate() {
if [ ! -f "$1"/Doxyfile ]; then
echo "doxygen generator error : file $1/Doxyfile is missing" >&2
exit 1
fi
mkdir -p $GENERATION_PATH
cd "$1"
(cat Doxyfile; echo -e "\nOUTPUT_DIRECTORY = \nHTML_OUTPUT = $GENERATION_PATH") | doxygen -
}