Ignoring files in project folder for Doxygen

Léo Léopold Hertz 준영 picture Léo Léopold Hertz 준영 · Aug 30, 2009 · Viewed 16.9k times · Source

How can you ignore files by Doxygen similarly as by Git's .git/info/exclude?

Doxygen generates docs for me based on 3rd party codes such Email -component and of my Git -repo, which I do not want. I need to keep the files where they are.

Answer

Anna picture Anna · Aug 30, 2009

You can use the EXCLUDE_PATTERNS tag in the configuration file:

EXCLUDE_PATTERNS = */test/*

Taken from here.