summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshuax <[email protected]>2021-06-26 07:40:36 +0800
committershuax <[email protected]>2021-06-26 07:40:36 +0800
commitd7699801e0639b8ff0c3aa8153376088c616a9a1 (patch)
tree3922c31e9aba8741408e75a36aaa49b79bca45db
parentcfdd992044c10dce5c181a3b61e38021926c399a (diff)
support vs2022 preview
-rw-r--r--xmake/modules/detect/sdks/find_vstudio.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/modules/detect/sdks/find_vstudio.lua b/xmake/modules/detect/sdks/find_vstudio.lua
index 9af9fb730..ba268e5b6 100644
--- a/xmake/modules/detect/sdks/find_vstudio.lua
+++ b/xmake/modules/detect/sdks/find_vstudio.lua
@@ -150,7 +150,8 @@ function main(opt)
-- init vsvers
local vsvers =
{
- ["16.0"] = "2019"
+ ["17.0"] = "2022"
+ , ["16.0"] = "2019"
, ["15.0"] = "2017"
, ["14.0"] = "2015"
, ["12.0"] = "2013"