mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
The documentation can be generated with "ninja -C build doxygen". The output will go to "doxygen/html" under the build directory.
10 lines
242 B
Meson
10 lines
242 B
Meson
cdata.set('DOXYGEN_OUTPUT_DIRECTORY', meson.current_build_dir())
|
|
|
|
doxygen_conf = configure_file(
|
|
input : 'doxygen.conf.in',
|
|
output : 'doxygen.conf',
|
|
configuration : cdata,
|
|
)
|
|
|
|
run_target('doxygen',
|
|
command : ['doxygen', doxygen_conf])
|