diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2020-09-29 11:00:45 -0400 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.com> | 2020-09-29 19:33:09 -0400 |
commit | 82cfabbabaade239beb26136cb28c98156552ea5 (patch) | |
tree | 7446c1387beb99674f64edf10205fe7f7e5eda3f /meson_options.txt | |
parent | 86516a454fb71b1a6564b4e76174503711eed05b (diff) | |
download | pango-82cfabbabaade239beb26136cb28c98156552ea5.tar.gz |
meson: Change introspection option to yielding feature
Yielding option means that if pango is built as a subproject, it will
take the value of that option from the parent project (e.g. gst-build).
For that to work it must be of the same type, which is "feature" instead
of "boolean" in all GStreamer modules.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt index 5aa7c795..235b8a48 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -4,8 +4,9 @@ option('gtk_doc', value: false) option('introspection', description: 'Build the GObject introspection data for Pango', - type: 'boolean', - value: true) + type: 'feature', + value: 'auto', + yield: true) option('install-tests', description : 'Install tests', type: 'boolean', |