How can you ignore files by Doxygen similarly as by Git\'s .git/info/exclude?
.git/info/exclude
Doxygen generates docs for me based on 3rd party codes su
You can use the EXCLUDE_PATTERNS tag in the configuration file:
EXCLUDE_PATTERNS = */test/*
Taken from here.