pulseaudio/doxygen/meson.build
Rosen Penev a8d7d2f732 meson: doxygen and tests to feature options
Allows build to continue without passing extra options.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2025-10-21 13:17:10 -07:00

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])