update docs

This commit is contained in:
Wim Taymans 2017-09-05 13:35:25 +02:00
parent 7ef1a1d107
commit 36ac8a6545
24 changed files with 308 additions and 167 deletions

View file

@ -780,7 +780,7 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.
INPUT = "@top_srcdir@/src/pipewire"
INPUT = @inputs@
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses

View file

@ -10,6 +10,16 @@ else
doxyfile_conf.set('HAVE_DOT', 'NO')
endif
inputs = ''
foreach h : pipewire_headers
inputs += ' ' + join_paths(meson.source_root(), 'src', 'pipewire', h)
endforeach
foreach h : pipewire_sources
inputs += ' ' + join_paths(meson.source_root(), 'src', 'pipewire', h)
endforeach
doxyfile_conf.set('inputs', inputs)
doxyfile = configure_file(input: 'Doxyfile.in',
output: 'Doxyfile',
configuration: doxyfile_conf,