Doxygen 强氧剂。如何排除多个文件?

Doxygen 强氧剂。如何排除多个文件?,doxygen,Doxygen,在我的配置文件中 EXCLUDE=。/fileToBeExcluded 它工作得很好,但是如果我想排除更多的文件,就没有办法了。 我试过: EXCLUDE=。/fileToBeExcluded ./filetobeexcluded 2 EXCLUDE=。/fileToBeExcluded, ./filetobeexcluded 2 EXCLUDE=。/fileToBeExcluded 排除=。/fileToBeExcluded2 有什么建议吗?? 谢谢你找到了解决方案。我不得不用反斜杠“\” E

在我的配置文件中

EXCLUDE=。/fileToBeExcluded

它工作得很好,但是如果我想排除更多的文件,就没有办法了。 我试过:

EXCLUDE=。/fileToBeExcluded
./filetobeexcluded 2

EXCLUDE=。/fileToBeExcluded,
./filetobeexcluded 2

EXCLUDE=。/fileToBeExcluded
排除=。/fileToBeExcluded2

有什么建议吗??
谢谢你找到了解决方案。我不得不用反斜杠“\”

EXCLUDE=。/fileToBeExcluded\
./filetobeexcluded 2


与所有其他配置选项一样,多个值用空格分隔(例如
EXCLUDE=./fileToBeExcluded./fileToBeExcluded 2
)。反斜杠只是连接线条。另一种可能是使用+=键的可能性