diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2020-09-30 09:41:28 -0400 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.com> | 2020-09-30 09:50:24 -0400 |
commit | 0e5dac8c25d11e3ce921c584c05064a93507393d (patch) | |
tree | 3921362d112aa05f4c5ffcc4ad05f1c758d23005 /meson_options.txt | |
parent | 87393c7fb6d533dbc3eeab533312c99ab80c1754 (diff) | |
download | gtk+-0e5dac8c25d11e3ce921c584c05064a93507393d.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 f4dc3b43d7..b58c8a9fa0 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -84,8 +84,9 @@ option('man-pages', description : 'Build man pages for installed tools') option('introspection', - type: 'boolean', - value: 'true', + type: 'feature', + value: 'auto', + yield: true, description : 'Build introspection data (requires gobject-introspection)') # Demos, examples and tests |