Ignoring files in project folder for Doxygen

前端 未结 1 1262
悲&欢浪女
悲&欢浪女 2021-01-01 10:03

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 su

1条回答
  •  粉色の甜心
    2021-01-01 10:24

    You can use the EXCLUDE_PATTERNS tag in the configuration file:

    EXCLUDE_PATTERNS = */test/*
    

    Taken from here.

    0 讨论(0)
提交回复
热议问题