Native build system toolset specification provided by user.
Some CMake generators support a toolset specification to tell the native build system how to choose a compiler. If the user specifies a toolset (e.g. via the cmake(1) -T option) the value will be available in this variable.
The value of this variable should never be modified by project code. A toolchain file specified by the CMAKE_TOOLCHAIN_FILE variable may initialize CMAKE_GENERATOR_TOOLSET. Once a given build tree has been initialized with a particular value for this variable, changing the value has undefined behavior.
Toolset specification is supported only on specific generators:
Xcode generator for Xcode 3.0 and aboveSee native build system documentation for allowed toolset names.
The Visual Studio Generators support toolset specification using one of these forms:
toolsettoolset[,key=value]*key=value[,key=value]*The toolset specifies the toolset name. The selected toolset name is provided in the CMAKE_VS_PLATFORM_TOOLSET variable.
The key=value pairs form a comma-separated list of options to specify generator-specific details of the toolset selection. Supported pairs are:
cuda=<version> CMAKE_VS_PLATFORM_TOOLSET_CUDA variable.host=x64 x64 toolchain on x64 hosts. Supported by VS 2013 and above. See the CMAKE_VS_PLATFORM_TOOLSET_HOST_ARCHITECTURE variable.version=<version> CMAKE_VS_PLATFORM_TOOLSET_VERSION variable.
© 2000–2018 Kitware, Inc. and Contributors
Licensed under the BSD 3-clause License.
https://cmake.org/cmake/help/v3.12/variable/CMAKE_GENERATOR_TOOLSET.html