Loebre
Loebre

Reputation: 672

Doxygen. How can I exclude more than one file?

In my configuration file where

EXCLUDE = ./fileToBeExcluded

and it works fine, but if I want to exclude more files, there is no way. I have tried:

EXCLUDE = ./fileToBeExcluded ./fileToBeExcluded2

EXCLUDE = ./fileToBeExcluded, ./fileToBeExcluded2

EXCLUDE = ./fileToBeExcluded EXCLUDE = ./fileToBeExcluded2

Any suggestions?? Thank you

Upvotes: 1

Views: 1638

Answers (1)

Loebre
Loebre

Reputation: 672

Found the solution. I had to use the backSlash "\"

EXCLUDE = ./fileToBeExcluded \ ./fileToBeExcluded2

and that works.

Upvotes: 1

Related Questions