aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-07-02 12:54:39 -0400
committerEli Schwartz <eschwartz@archlinux.org>2023-07-02 18:03:21 -0400
commit052066797336f7d17c56ce625c13887facfbdd60 (patch)
tree619ad78183ecd7b5d6a7915848c32a2666a01548
parenta63ed40191019a8d7cdc03b457adfd4a81ccb4dd (diff)
downloadmeson-052066797336f7d17c56ce625c13887facfbdd60.zip
meson-052066797336f7d17c56ce625c13887facfbdd60.tar.gz
meson-052066797336f7d17c56ce625c13887facfbdd60.tar.bz2
genvslite: improve readability of the mconf help text
The option description has a lot of data packed into it, which is squeezed into a small, hard to read column. Give a bit less information, focusing on essentials, to make it fit better. Post-facto application of issues that were caught during post-merge review, after the genvslite PR was merged without a full review.
-rw-r--r--mesonbuild/coredata.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py
index 24daa42..90891a9 100644
--- a/mesonbuild/coredata.py
+++ b/mesonbuild/coredata.py
@@ -1257,9 +1257,8 @@ BUILTIN_CORE_OPTIONS: 'MutableKeyedOptionDictType' = OrderedDict([
(OptionKey('genvslite'),
BuiltinOption(
UserComboOption,
- 'Setup multiple buildtype-suffixed ninja-backend build directories (e.g. builddir_[debug/release/etc.]) '
- 'and generate [builddir]_vs containing a Visual Studio solution with multiple configurations that invoke a meson compile of the newly '
- 'setup build directories, as appropriate for the current build configuration (buildtype)',
+ 'Setup multiple buildtype-suffixed ninja-backend build directories, '
+ 'and a [builddir]_vs containing a Visual Studio meta-backend with multiple configurations that calls into them',
'vs2022',
choices=genvslitelist)
),