氧气。如何排除多个文件?

Doxygen. How can I exclude more than one file?

在我的配置文件中

EXCLUDE = ./fileToBeExcluded

还可以,但是如果我想排除更多的文件,就没有办法了。 我试过:

EXCLUDE = ./fileToBeExcluded ./fileToBeExcluded2

EXCLUDE = ./fileToBeExcluded, ./fileToBeExcluded2

EXCLUDE = ./fileToBeExcluded EXCLUDE = ./fileToBeExcluded2

有什么建议吗?? 谢谢

找到解决方案。我不得不使用反斜杠“\”

EXCLUDE = ./fileToBeExcluded \ ./fileToBeExcluded2

那行得通。