Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ignoring files in project folder for Doxygen

Tags:

doxygen

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.

like image 642
Léo Léopold Hertz 준영 Avatar asked Aug 30 '09 15:08

Léo Léopold Hertz 준영


1 Answers

You can use the EXCLUDE_PATTERNS tag in the configuration file:

EXCLUDE_PATTERNS = */test/*

Taken from here.

like image 69
Anna Avatar answered Sep 28 '22 10:09

Anna