Don't build latex and remove html after doxygen run

This commit is contained in:
Austen Adler 2016-08-20 15:03:02 -04:00
parent 1dfd8ec504
commit 09f28d1741
No known key found for this signature in database
GPG Key ID: 7ECEE590CCDFE3F1
2 changed files with 3 additions and 1 deletions

View File

@ -1586,7 +1586,7 @@ EXTRA_SEARCH_MAPPINGS =
# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
# The default value is: YES.
GENERATE_LATEX = YES
GENERATE_LATEX = NO
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of

View File

@ -34,6 +34,8 @@ if command -v doxygen >/dev/null; then
printf "$OUTPUT\n" >&2
return 2
fi
#TODO: We might need this in the future, bur for now, delete html directory
rm -r html || true
else
printf "You don't have doxygen installed. Can't check documentation\n" >&2
fi