Ignoring files in project folder for Doxygen

拟墨画扇 提交于 2019-11-29 15:58:27

问题


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.


回答1:


You can use the EXCLUDE_PATTERNS tag in the configuration file:

EXCLUDE_PATTERNS = */test/*

Taken from here.



来源:https://stackoverflow.com/questions/1354056/ignoring-files-in-project-folder-for-doxygen

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!