up vote 3 down vote favorite
share [g+] share [fb]

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.

link|improve this question

Thank you for your answer! – Masi Aug 30 '09 at 15:44
feedback

1 Answer

up vote 7 down vote accepted

You can use the EXCLUDE_PATTERNS tag in the configuration file:

EXCLUDE_PATTERNS = */test/*

Taken from here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.