diff options
author | David Robillard <d@drobilla.net> | 2021-05-24 09:16:25 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-05-24 09:42:59 -0400 |
commit | 5cd46c6ff5e5fb187fc01cc938a6a09aa9c4d24c (patch) | |
tree | 8f0dd3efab47f933b18e53439d57607b651d8645 /doc/cpp/Doxyfile.in | |
parent | 3d78a073d90d8f232604fbdc76a6a583ffab364b (diff) | |
download | pugl-5cd46c6ff5e5fb187fc01cc938a6a09aa9c4d24c.tar.gz pugl-5cd46c6ff5e5fb187fc01cc938a6a09aa9c4d24c.tar.bz2 pugl-5cd46c6ff5e5fb187fc01cc938a6a09aa9c4d24c.zip |
Fix documentation build as a subproject
Diffstat (limited to 'doc/cpp/Doxyfile.in')
-rw-r--r-- | doc/cpp/Doxyfile.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/doc/cpp/Doxyfile.in b/doc/cpp/Doxyfile.in index 889ac0b..5e1be1c 100644 --- a/doc/cpp/Doxyfile.in +++ b/doc/cpp/Doxyfile.in @@ -24,9 +24,14 @@ XML_PROGRAMLISTING = NO SHOW_FILES = NO MACRO_EXPANSION = YES -PREDEFINED = PUGL_API PUGL_DISABLE_DEPRECATED PUGL_CONST_API= PUGL_CONST_FUNC= +PREDEFINED = PUGL_API \ + PUGL_DISABLE_DEPRECATED \ + PUGL_CONST_API= \ + PUGL_CONST_FUNC= +RECURSIVE = YES STRIP_FROM_PATH = @PUGL_SRCDIR@ -INPUT = @PUGL_HEADERS@ +INPUT = @PUGL_SRCDIR@/include \ + @PUGL_SRCDIR@/bindings/cpp/include -OUTPUT_DIRECTORY = doc/cpp +OUTPUT_DIRECTORY = @DOX_OUTPUT@ |