diff options
| author | EnoroF <[email protected]> | 2016-11-29 21:49:12 +0800 |
|---|---|---|
| committer | EnoroF <[email protected]> | 2016-11-29 21:49:12 +0800 |
| commit | 5c020d24f5824640e31d85678df2e73aa2f08de3 (patch) | |
| tree | 6095b361bb9bcc36dda27e251557ee940336894c /xmake/plugins/project/main.lua | |
| parent | 2ea0b24f21a51aab56e79ae81f8f8b71c450161a (diff) | |
add support for vs2017.
Diffstat (limited to 'xmake/plugins/project/main.lua')
| -rwxr-xr-x | xmake/plugins/project/main.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmake/plugins/project/main.lua b/xmake/plugins/project/main.lua index e38579f4a..738f82dce 100755 --- a/xmake/plugins/project/main.lua +++ b/xmake/plugins/project/main.lua @@ -33,6 +33,7 @@ import("vstudio.vs2010") import("vstudio.vs2012") import("vstudio.vs2013") import("vstudio.vs2015") +import("vstudio.vs2017") -- make project function _make(kind) @@ -49,6 +50,7 @@ function _make(kind) , vs2012 = vs2012.make , vs2013 = vs2013.make , vs2015 = vs2015.make + , vs2017 = vs2017.make } assert(maps[kind], "the project kind(%s) is not supported!", kind) |
