diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2022-09-18 11:05:02 -0400 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2022-09-18 21:59:30 -0400 |
commit | 635cb1b873019c70e6907c883d16379339a4cf80 (patch) | |
tree | d7efc66ab4decd012a208af27288b40c30bf503d /mesonbuild/modules/gnome.py | |
parent | d3fd050f85ed1405b17198232f3828d6b91aae33 (diff) | |
download | meson-635cb1b873019c70e6907c883d16379339a4cf80.zip meson-635cb1b873019c70e6907c883d16379339a4cf80.tar.gz meson-635cb1b873019c70e6907c883d16379339a4cf80.tar.bz2 |
gnome: Add some missing install_tag
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r-- | mesonbuild/modules/gnome.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index bb8c9ac..b64ba68 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -507,6 +507,7 @@ class GnomeModule(ExtensionModule): extra_depends=depends, install=kwargs['install'], install_dir=[kwargs['install_dir']] if kwargs['install_dir'] else [], + install_tag=['runtime'], ) if gresource: # Only one target for .gresource files @@ -526,6 +527,7 @@ class GnomeModule(ExtensionModule): extra_depends=depends, install=install_header, install_dir=[install_dir], + install_tag=['devel'], ) rv = [target_c, target_h] return ModuleReturnValue(rv, rv) @@ -1674,6 +1676,7 @@ class GnomeModule(ExtensionModule): extra_depends=depends, install=install_header, install_dir=[install_dir], + install_tag=['devel'], ) targets.append(hfile_custom_target) @@ -1920,6 +1923,7 @@ class GnomeModule(ExtensionModule): capture=True, install=install, install_dir=[_install_dir], + install_tag=['devel'], extra_depends=depends, # https://github.com/mesonbuild/meson/issues/973 absolute_paths=True, @@ -1985,6 +1989,7 @@ class GnomeModule(ExtensionModule): [header_file], install=install_header, install_dir=[kwargs['install_dir']] if kwargs['install_dir'] else [], + install_tag=['devel'], capture=capture, depend_files=kwargs['depend_files'], ) @@ -2131,6 +2136,7 @@ class GnomeModule(ExtensionModule): extra_depends=vapi_depends, install=kwargs['install'], install_dir=[install_dir], + install_tag=['devel'], ) # So to try our best to get this to just work we need: |