我想Doxygen忽略,绕过,而不是搜索我项目的以下目录:
*/.svn/*
*/docs/*
*/Properties/*
*/bin/*
Run Code Online (Sandbox Code Playgroud)
根据Doxygen FAQ:
How can I exclude all test directories from my directory tree?
Simply put an exclude pattern like this in the configuration file:
EXCLUDE_PATTERNS = */test/*
Run Code Online (Sandbox Code Playgroud)
所以,我的Doxygen文件看起来像这样:
# If the value of the INPUT tag contains directories, you can use the
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
# certain files from those directories. Note that the wildcards are matched
# against the file with absolute path, …Run Code Online (Sandbox Code Playgroud) doxygen ×1