summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2021-06-26 13:48:45 +0800
committerGitHub <[email protected]>2021-06-26 13:48:45 +0800
commitd9626894bace0015637f212cdab87a9c7d34a077 (patch)
treed5dc660d069d48bd46e12ce365dd4c36753a981f
parentb6f90d1f51a14d4f11821c8b1eeabd8aaab95fb0 (diff)
parentd7699801e0639b8ff0c3aa8153376088c616a9a1 (diff)
Merge pull request #1472 from shuax/master
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"