mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
Allows build to continue without passing extra options. Signed-off-by: Rosen Penev <rosenp@gmail.com>
15 lines
353 B
Meson
15 lines
353 B
Meson
doxygen = find_program('doxygen', required: get_option('doxygen'))
|
|
if not doxygen.found()
|
|
subdir_done()
|
|
endif
|
|
|
|
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])
|