diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2023-01-19 13:39:51 -0500 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2023-03-29 09:33:41 -0400 |
commit | b30cd5d2d587546eac8b560a8c311a52d69fb53e (patch) | |
tree | bd20ed04fbe5f5f63044e84a6f612602914217db /mesonbuild/coredata.py | |
parent | 5dc4fcae34ee3a5a3d47021f8ea8b2c5d3b14ea9 (diff) | |
download | meson-b30cd5d2d587546eac8b560a8c311a52d69fb53e.zip meson-b30cd5d2d587546eac8b560a8c311a52d69fb53e.tar.gz meson-b30cd5d2d587546eac8b560a8c311a52d69fb53e.tar.bz2 |
Make --vsenv a readonly builtin option
We need to remember its value when reconfiguring, but the Build object
is not reused, only coredata is.
This also makes CLI more consistent by allowing `-Dvsenv=true` syntax.
Fixes: #11309
Diffstat (limited to 'mesonbuild/coredata.py')
-rw-r--r-- | mesonbuild/coredata.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py index f1c31af..bc8ee19 100644 --- a/mesonbuild/coredata.py +++ b/mesonbuild/coredata.py @@ -1259,6 +1259,7 @@ BUILTIN_CORE_OPTIONS: 'MutableKeyedOptionDictType' = OrderedDict([ (OptionKey('werror'), BuiltinOption(UserBooleanOption, 'Treat warnings as errors', False, yielding=False)), (OptionKey('wrap_mode'), BuiltinOption(UserComboOption, 'Wrap mode', 'default', choices=['default', 'nofallback', 'nodownload', 'forcefallback', 'nopromote'])), (OptionKey('force_fallback_for'), BuiltinOption(UserArrayOption, 'Force fallback for those subprojects', [])), + (OptionKey('vsenv'), BuiltinOption(UserBooleanOption, 'Activate Visual Studio environment', False, readonly=True)), # Pkgconfig module (OptionKey('relocatable', module='pkgconfig'), |