From 7a381eedd022f42062b58ff8e518a2b8b7a56036 Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Sat, 28 Jan 2023 17:08:54 +0100 Subject: [PATCH] [meson] fix install tag for `harfbuzz-config.cmake` So it does not get installed when filtering out `devel` stuff, e.g. by using `meson install --tags runtime`. --- src/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/meson.build b/src/meson.build index 27d9a31e7..4e5749815 100644 --- a/src/meson.build +++ b/src/meson.build @@ -770,6 +770,7 @@ configure_file(input: 'harfbuzz-config.cmake.in', output: 'harfbuzz-config.cmake', configuration: cmake_config, install_dir: get_option('libdir') / 'cmake' / 'harfbuzz', + install_tag: 'devel', ) gobject_enums_c = []