We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f03d54e commit 1532bcbCopy full SHA for 1532bcb
external/vcpkg-triplets/x64-windows-static-md-fix.cmake
@@ -17,13 +17,11 @@ if(DEFINED toolset_to_use)
17
string(REGEX MATCH "^([0-9]+)\\.([0-9])" _match "${toolset_to_use}")
18
if(_match)
19
# Map version to correct Visual Studio toolset
20
- # 14.0-14.9 -> v140 (VS 2015)
+ # 14.0-14.9 -> v140 (VS 2015)
21
# 14.1X -> v141 (VS 2017)
22
# 14.2X -> v142 (VS 2019)
23
# 14.3X-14.4X -> v143 (VS 2022)
24
if(CMAKE_MATCH_1 EQUAL 14)
25
- if(CMAKE_MATCH_2 EQUAL 0)
26
- set(derived_toolset "v140")
27
elseif(CMAKE_MATCH_2 EQUAL 1)
28
set(derived_toolset "v141")
29
elseif(CMAKE_MATCH_2 EQUAL 2)
0 commit comments