From f3aa309fa13d8b014a4efe69c5110eb7d18a3baf Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Sun, 28 May 2017 23:58:54 +0100 Subject: Add mkdb_args support to gnome.gtkdoc() There are cases where we need to specify arguments to gtkdoc-mkdb, like telling it to scan extensions that are not '.h' and '.c'. Let's add a new named argument to gnome.gtkdoc(), as well as the plumbing needed for the gtk-doc helper script. --- mesonbuild/modules/gnome.py | 1 + 1 file changed, 1 insertion(+) (limited to 'mesonbuild/modules') diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index b8092b2..6644ba7 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -697,6 +697,7 @@ class GnomeModule(ExtensionModule): args += self._unpack_args('--scanobjsargs=', 'scanobjs_args', kwargs) args += self._unpack_args('--gobjects-types-file=', 'gobject_typesfile', kwargs, state) args += self._unpack_args('--fixxrefargs=', 'fixxref_args', kwargs) + args += self._unpack_args('--mkdbargs=', 'mkdb_args', kwargs) args += self._unpack_args('--html-assets=', 'html_assets', kwargs, state) args += self._unpack_args('--content-files=', 'content_files', kwargs, state) args += self._unpack_args('--expand-content-files=', 'expand_content_files', kwargs, state) -- cgit v1.1