[PATCH] D32113: Add path from clang to doxygen document include header

Raphael Isemann via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Apr 17 06:33:32 PDT 2017


teemperor added inline comments.


================
Comment at: docs/doxygen.cfg.in:158
+STRIP_FROM_INC_PATH    += @abs_srcdir@/../include/clang
+STRIP_FROM_INC_PATH    += @abs_srcdir@/../include/clang-c
 
----------------
yamaguchi wrote:
> v.g.vassilev wrote:
> > We should be stripping `@abs_srcdir@/../include` because in reality the way the user will include those files is via `#include "clang/Sema/Sema.h" for instance.
> Do you mean we should be stripping 
> ```
> @abs_srcdir@/../include
> ```
> rather than
> 
> ```
> @abs_srcdir@/..
> @abs_srcdir@/../include/clang
> @abs_srcdir@/../include/clang-c
> ```
> ?
Yes, I think so.


https://reviews.llvm.org/D32113





More information about the cfe-commits mailing list