2011년 8월 2일 화요일

How to exclude multiple patterns in use of doxygen

I usually separate public and private used API in different directories.
But, things aren't likely so when it comes to a massive project.

Anyway, my current work was creating doxygen result and public/private header files were mixed together. :(
So it is clear that I had to exclude private header files from result.

What I did is:
1. Created configure file as doxygen website denoted.
2. Open it with editor program.
3. Find 'EXCLUDE_PATTERNS'.
4. Add patterns with wildcard character.

That's it.
Please note that when you need to add more than two patterns, use space between them.
For example, when you need to exclude with pattern 'hello' and 'world', configure file will be like below.

EXCLUDE_PATTERNS = *hello* *world*

Hope this helps you.

댓글 없음:

댓글 쓰기