File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 53
53
54
54
function get_vs_version ()
55
55
local function map_msvc_to_vs_version (major , minor )
56
- if major == " 19" and minor >= " 20" then return " vs2019"
56
+ if major == " 19" and minor >= " 30" then return " vs2022"
57
+ elseif major == " 19" and minor >= " 20" then return " vs2019"
57
58
elseif major == " 19" and minor >= " 10" then return " vs2017"
58
59
end
59
60
end
60
61
61
62
local function map_msbuild_to_vs_version (major , minor )
62
- if major == " 16" then return " vs2019"
63
+ if major == " 17" then return " vs2022"
64
+ elseif major == " 16" then return " vs2019"
63
65
elseif major == " 15" then return " vs2017"
64
66
end
65
67
end
397
399
398
400
function get_cmake_generator ()
399
401
local vsver = get_vs_version ()
400
- if vsver == " vs2019" then
402
+ if vsver == " vs2022" then
403
+ return " Visual Studio 17 2022" , (target_architecture () == " x86" ) and " -A Win32" or nil
404
+ elseif vsver == " vs2019" then
401
405
return " Visual Studio 16 2019" , (target_architecture () == " x86" ) and " -A Win32" or nil
402
406
elseif vsver == " vs2017" then
403
407
return " Visual Studio 15 2017" .. (target_architecture () == " x64" and " Win64" or " " ), nil
You can’t perform that action at this time.
0 commit comments