meson: Set install_tag on remaining installed files

This commit is contained in:
Xavier Claessens
2022-09-18 16:51:55 -04:00
parent 49fd523af3
commit a73ca336aa
7 changed files with 38 additions and 14 deletions

View File

@@ -18,5 +18,7 @@ if host_system != 'windows'
# Install Valgrind suppression file (except on Windows,
# as Valgrind is currently not supported on Windows)
install_data('glib.supp',
install_dir : join_paths(get_option('datadir'), 'glib-2.0', 'valgrind'))
install_dir : get_option('datadir') / 'glib-2.0' / 'valgrind',
install_tag : 'devel',
)
endif