File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -98,9 +98,12 @@ PDBVER = 14
98
98
!if $(VCVERSION) > 1909 && $(VCVERSION) < 1920
99
99
VSVER_SUFFIX = 1
100
100
VSVER = 15
101
- !elseif $(VCVERSION) > 1919 && $(VCVERSION) < 2000
101
+ !elseif $(VCVERSION) > 1919 && $(VCVERSION) < 1930
102
102
VSVER_SUFFIX = 2
103
103
VSVER = 16
104
+ !elseif $(VCVERSION) > 1929 && $(VCVERSION) < 2000
105
+ VSVER_SUFFIX = 3
106
+ VSVER = 17
104
107
!else
105
108
VSVER = $(PDBVER )
106
109
!endif
Original file line number Diff line number Diff line change @@ -220,7 +220,9 @@ if is_msvc
220
220
add_project_arguments (cpp_compiler.get_supported_arguments([ ' /utf-8' , ' /wd4828' ]), language : ' cpp' )
221
221
222
222
if use_msvc14x_toolset_ver
223
- if cpp_compiler.version().version_compare(' >=19.20' )
223
+ if cpp_compiler.version().version_compare(' >=19.30' )
224
+ msvc14x_toolset_ver = ' -vc143'
225
+ elif cpp_compiler.version().version_compare(' >=19.20' )
224
226
msvc14x_toolset_ver = ' -vc142'
225
227
elif cpp_compiler.version().version_compare(' >=19.10' )
226
228
msvc14x_toolset_ver = ' -vc141'
You can’t perform that action at this time.
0 commit comments