-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update doxyfile for doxygen 1.9.2 #148
Conversation
21575f8
to
e306b47
Compare
# The default value is: MathJax_2. | ||
# This tag requires that the tag USE_MATHJAX is set to YES. | ||
|
||
MATHJAX_VERSION = MathJax_2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As USE_MATHJAX
is set to NO
, should this be set to an empty value to avoid giving misrepresentation of MathJax being used in the doxygen generation?
# The default value is: NO. | ||
# This tag requires that the tag UML_LOOK is set to YES. | ||
|
||
DOT_UML_DETAILS = NO |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As the description for this config seems relevant to OOP languages, should this be set to NONE
for our libraries?
The changes to these files were done by |
Description:
doxygen
1.9.2 deprecates the following tags, resulting in warnings:The first two commits update the file manually to allow it to work with both 1.8.20 and 1.9.2 without warnings. The last commit updates the file with
doxygen -u
, but it will only work with 1.9.2. I don't think there's any value in keeping compatibility with 1.8.20, so I think it's better to just usedoxygen -u
.