aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/gnome.py
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-09-24 12:05:58 -0300
committerThibault Saunier <tsaunier@gnome.org>2016-09-26 15:25:59 -0300
commitbb3823e6f4f8332be25d33e07af0d6059f304d51 (patch)
treea2af82c0e990ebb42daf045c2216fef5c19eaa33 /mesonbuild/modules/gnome.py
parentf86fbf6ebf68081d2949333ed6bfcda7f768d149 (diff)
downloadmeson-bb3823e6f4f8332be25d33e07af0d6059f304d51.zip
meson-bb3823e6f4f8332be25d33e07af0d6059f304d51.tar.gz
meson-bb3823e6f4f8332be25d33e07af0d6059f304d51.tar.bz2
gnome: Allow specifying gtkdoc where to install directory
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r--mesonbuild/modules/gnome.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py
index cec0c69..11abf88 100644
--- a/mesonbuild/modules/gnome.py
+++ b/mesonbuild/modules/gnome.py
@@ -397,6 +397,7 @@ class GnomeModule:
args += self.unpack_args('--fixxrefargs=', 'fixxref_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('--installdir=', 'install_dir', kwargs, state)
args += self.get_build_args(kwargs, state)
res = [build.RunTarget(targetname, command[0], command[1:] + args, [], state.subdir)]
if kwargs.get('install', True):