1MSVC_TOOLSET_VERSION
2--------------------
3
4.. versionadded:: 3.12
5
6The toolset version of Microsoft Visual C/C++ being used if any.
7If MSVC-like is being used, this variable is set based on the version
8of the compiler as given by the :variable:`MSVC_VERSION` variable.
9
10Known toolset version numbers are::
11
12  80        = VS 2005 (8.0)
13  90        = VS 2008 (9.0)
14  100       = VS 2010 (10.0)
15  110       = VS 2012 (11.0)
16  120       = VS 2013 (12.0)
17  140       = VS 2015 (14.0)
18  141       = VS 2017 (15.0)
19  142       = VS 2019 (16.0)
20
21Compiler versions newer than those known to CMake will be reported
22as the latest known toolset version.
23
24See also the :variable:`MSVC_VERSION` variable.
25