meson: Add doxygen target
authorTanu Kaskinen <tanuk@iki.fi>
Mon, 10 Aug 2020 16:47:45 +0000 (19:47 +0300)
committerTanu Kaskinen <tanuk@iki.fi>
Mon, 10 Aug 2020 16:50:57 +0000 (19:50 +0300)
The documentation can be generated with "ninja -C build doxygen". The
output will go to "doxygen/html" under the build directory.

doxygen/meson.build [new file with mode: 0644]
meson.build

diff --git a/doxygen/meson.build b/doxygen/meson.build
new file mode 100644 (file)
index 0000000..afc0e49
--- /dev/null
@@ -0,0 +1,10 @@
+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])
index a408464..88d02bd 100644 (file)
@@ -151,6 +151,7 @@ cdata.set_quoted('DESKTOPFILEDIR', join_paths(datadir, 'applications'))
 cdata.set_quoted('PULSE_LOCALEDIR', localedir)
 cdata.set_quoted('GETTEXT_PACKAGE', 'pulseaudio')
 cdata.set('ENABLE_NLS', 1)
+cdata.set('top_srcdir', meson.source_root())
 
 # Platform specifics
 # First some defaults to keep config file generation happy
@@ -699,6 +700,7 @@ check_dep = dependency('check', version : '>= 0.9.10', required : get_option('te
 
 # Subdirs
 
+subdir('doxygen')
 subdir('po')
 if get_option('man')
   subdir('man')