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/vstudio/vs2017.lua | |
| parent | 2ea0b24f21a51aab56e79ae81f8f8b71c450161a (diff) | |
add support for vs2017.
Diffstat (limited to 'xmake/plugins/project/vstudio/vs2017.lua')
| -rw-r--r-- | xmake/plugins/project/vstudio/vs2017.lua | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/xmake/plugins/project/vstudio/vs2017.lua b/xmake/plugins/project/vstudio/vs2017.lua new file mode 100644 index 000000000..389b51eba --- /dev/null +++ b/xmake/plugins/project/vstudio/vs2017.lua @@ -0,0 +1,39 @@ +--!The Make-like Build Utility based on Lua +-- +-- XMake is free software; you can redistribute it and/or modify +-- it under the terms of the GNU Lesser General Public License as published by +-- the Free Software Foundation; either version 2.1 of the License, or +-- (at your option) any later version. +-- +-- XMake is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU Lesser General Public License for more details. +-- +-- You should have received a copy of the GNU Lesser General Public License +-- along with XMake; +-- If not, see <a href="http://www.gnu.org/licenses/"> http://www.gnu.org/licenses/</a> +-- +-- Copyright (C) 2015 - 2016, ruki All rights reserved. +-- +-- @author ruki +-- @file vs2015.lua +-- + +-- imports +import("impl.vs201x") + +-- make +function make(outputdir) + + -- init vstudio info + local vsinfo = + { + vstudio_version = "2017" + , filters_version = "4.0" + , solution_version = "12" + } + + -- make project + vs201x.make(outputdir, vsinfo) +end |
