Skip to content

Commit 1532bcb

Browse files
committed
Ignore vs2015
1 parent f03d54e commit 1532bcb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

external/vcpkg-triplets/x64-windows-static-md-fix.cmake

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,11 @@ if(DEFINED toolset_to_use)
1717
string(REGEX MATCH "^([0-9]+)\\.([0-9])" _match "${toolset_to_use}")
1818
if(_match)
1919
# Map version to correct Visual Studio toolset
20-
# 14.0-14.9 -> v140 (VS 2015)
20+
# 14.0-14.9 -> v140 (VS 2015)
2121
# 14.1X -> v141 (VS 2017)
2222
# 14.2X -> v142 (VS 2019)
2323
# 14.3X-14.4X -> v143 (VS 2022)
2424
if(CMAKE_MATCH_1 EQUAL 14)
25-
if(CMAKE_MATCH_2 EQUAL 0)
26-
set(derived_toolset "v140")
2725
elseif(CMAKE_MATCH_2 EQUAL 1)
2826
set(derived_toolset "v141")
2927
elseif(CMAKE_MATCH_2 EQUAL 2)

0 commit comments

Comments
 (0)