Is it possible to choose which Doxygen warning to show?

Viewed 4295

Doxygen shows a Compound ? is not documented. warning when building. For a specific project I don't want to document Compounds. To remove clutter I want to see all other warnings except that one. Is there a way to clean the Doxygen output?

3 Answers

You can switch off warnings in the doxygen configuration. See here: doxygen documenation

My favorite is: WARN_IF_UNDOCUMENTED = NO

Related