diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-08-02 15:10:41 -0700 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-08-02 15:53:53 -0700 |
commit | 708d9e9fbad49cc0723f44954a3c0a93a3f54b37 (patch) | |
tree | 1505bb0fba7c76d0669f4927835429c954ed3a8f | |
parent | ec234ccea4e5954680b59811c2f9ee27bbcc75e9 (diff) | |
download | ffmpeg-708d9e9fbad49cc0723f44954a3c0a93a3f54b37.tar.gz |
Doxyfile: Set STRIP_FROM_INC_PATH to project root
Show proper #include's on struct pages.
Before:
#include <buffer.h>
After
#include <libavutil/buffer.h>
-rw-r--r-- | doc/Doxyfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Doxyfile b/doc/Doxyfile index 20f88f50bb..681825ed7b 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -161,7 +161,7 @@ STRIP_FROM_PATH = . # specify the list of include paths that are normally passed to the compiler # using the -I flag. -STRIP_FROM_INC_PATH = +STRIP_FROM_INC_PATH = . # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but # less readable) file names. This can be useful is your file systems doesn't |