32

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.

kaya3
  • 47,440
  • 4
  • 68
  • 97
Léo Léopold Hertz 준영
  • 134,464
  • 179
  • 445
  • 697

1 Answers1

48

You can use the EXCLUDE_PATTERNS tag in the configuration file:

EXCLUDE_PATTERNS = */test/*

Taken from here.

albert
  • 8,285
  • 3
  • 19
  • 32
Anna
  • 4,099
  • 4
  • 24
  • 26