mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -05:00
Add doxygen docs
This commit is contained in:
parent
f6ca32cdcf
commit
e7327d1316
68 changed files with 4569 additions and 937 deletions
2
doxygen/.gitignore
vendored
Normal file
2
doxygen/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
doxygen.conf
|
||||
html/
|
||||
2424
doxygen/Doxyfile.in
Normal file
2424
doxygen/Doxyfile.in
Normal file
File diff suppressed because it is too large
Load diff
25
doxygen/meson.build
Normal file
25
doxygen/meson.build
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
doxyfile_conf = configuration_data()
|
||||
doxyfile_conf.set('PACKAGE_NAME', meson.project_name())
|
||||
doxyfile_conf.set('PACKAGE_VERSION', meson.project_version())
|
||||
doxyfile_conf.set('top_srcdir', meson.source_root())
|
||||
doxyfile_conf.set('top_builddir', meson.build_root())
|
||||
|
||||
if find_program('dot', required: false).found()
|
||||
doxyfile_conf.set('HAVE_DOT', 'YES')
|
||||
else
|
||||
doxyfile_conf.set('HAVE_DOT', 'NO')
|
||||
endif
|
||||
|
||||
doxyfile = configure_file(input: 'Doxyfile.in',
|
||||
output: 'Doxyfile',
|
||||
configuration: doxyfile_conf,
|
||||
install: false)
|
||||
|
||||
docdir = join_paths(pipewire_datadir, 'doc')
|
||||
|
||||
html_target = custom_target('pipewire-docs',
|
||||
input: [ doxyfile ],
|
||||
output: [ 'html' ],
|
||||
command: [ doxygen, doxyfile ],
|
||||
install: true,
|
||||
install_dir: join_paths(docdir, 'pipewire'))
|
||||
Loading…
Add table
Add a link
Reference in a new issue