diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-08 00:13:39 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-08 00:13:39 +0300 |
commit | 9cc1d102253a22d8f6560cd08b96b6c536298dd4 (patch) | |
tree | 020abd4bd2fdd3cc1d9cd0bb7aca42a2f2518558 /project/toolset.py | |
parent | add --help-toolsets parameter (diff) | |
download | cmake-common-9cc1d102253a22d8f6560cd08b96b6c536298dd4.tar.gz cmake-common-9cc1d102253a22d8f6560cd08b96b6c536298dd4.zip |
toolset "visual-studio" -> "vs"
Diffstat (limited to '')
-rw-r--r-- | project/toolset.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project/toolset.py b/project/toolset.py index 3bd4d32..a73a8d5 100644 --- a/project/toolset.py +++ b/project/toolset.py @@ -139,7 +139,7 @@ class VisualStudioVersion(Enum): class ToolsetType(Enum): AUTO = 'auto' MSVC = 'msvc' - VISUAL_STUDIO = 'visual-studio' + VISUAL_STUDIO = 'vs' GCC = 'gcc' MINGW = 'mingw' CLANG = 'clang' @@ -154,7 +154,7 @@ class ToolsetType(Enum): if self is ToolsetType.MSVC: return 'Use cl.exe.' if self is ToolsetType.VISUAL_STUDIO: - return "Same as 'msvc'." + return "Visual Studio; same as 'msvc'." if self is ToolsetType.GCC: return 'Use gcc/g++.' if self is ToolsetType.MINGW: |