[Doxygen-users] EXCLUDE_PATTERNS for absolute paths
Brought to you by:
dimitri
From: Martin H. <mar...@or...> - 2015-05-21 16:02:59
|
Hi, I am trying to use the EXCLUDE_PATTERNS to exclude certain absolute paths, that is, they are relative to the source tree root. I want to exclude the directory A/foo/fie where A is the top directory of the distribution. I don't want to exclude any other directories, e.g. A/fum/foo/fie. I have tried the combinations EXCLUDE_PATTERNS = foo/fie EXCLUDE_PATTERNS = foo/fie/* EXCLUDE_PATTERNS = /foo/fie EXCLUDE_PATTERNS = ./foo/fie EXCLUDE_PATTERNS = /home/.../foo/fie (That is, the complete absolute path) None of them work. The only one that works is EXCLUDE_PATTERNS = */foo/fie/*, which I assume would wrongfully exclude e.g. A/test/foo/fie. Any help is appreciated. Regards, Martin Hansson |