aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mintro.py
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-10-13 09:56:59 +0200
committerXavier Claessens <xclaesse@gmail.com>2021-10-14 09:04:25 -0400
commit5e96730d7d9f1f6bebf66d04381bc5ec0f80a1cc (patch)
tree5be9524d64643808d012d3da2cc7896914403c48 /mesonbuild/mintro.py
parent4f7c0d0b62e0599f68b37b39d6d346cfb02295f0 (diff)
downloadmeson-5e96730d7d9f1f6bebf66d04381bc5ec0f80a1cc.zip
meson-5e96730d7d9f1f6bebf66d04381bc5ec0f80a1cc.tar.gz
meson-5e96730d7d9f1f6bebf66d04381bc5ec0f80a1cc.tar.bz2
introspect: include choices for array options
There was even a test covering this, but it did not fail due to a typo.
Diffstat (limited to 'mesonbuild/mintro.py')
-rw-r--r--mesonbuild/mintro.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py
index 8408720..130cf93 100644
--- a/mesonbuild/mintro.py
+++ b/mesonbuild/mintro.py
@@ -287,6 +287,8 @@ def list_buildoptions(coredata: cdata.CoreData, subprojects: T.Optional[T.List[s
typestr = 'integer'
elif isinstance(opt, cdata.UserArrayOption):
typestr = 'array'
+ if opt.choices:
+ optdict['choices'] = opt.choices
else:
raise RuntimeError("Unknown option type")
optdict['type'] = typestr