diff options
| author | ruki <[email protected]> | 2019-08-31 21:47:39 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-08-31 21:48:20 +0800 |
| commit | bb1cd08b49ce18a63d08287b81f5b50b57395702 (patch) | |
| tree | 15768e94d99c663cede1eabf45d8180cc17264b8 /xmake/plugins/project/vstudio/vs.lua | |
| parent | f4f94d8e5bbbe2d5acf2bac99bdb12d80f3b9f47 (diff) | |
fix vs tips and vsfile
Diffstat (limited to 'xmake/plugins/project/vstudio/vs.lua')
| -rw-r--r-- | xmake/plugins/project/vstudio/vs.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/plugins/project/vstudio/vs.lua b/xmake/plugins/project/vstudio/vs.lua index a36d0a80e..060ca01f2 100644 --- a/xmake/plugins/project/vstudio/vs.lua +++ b/xmake/plugins/project/vstudio/vs.lua @@ -34,17 +34,18 @@ function make(version) raise("invalid vs version, run `xmake f --vs=201x`") end end - vprint("using project kind vs%d", version) end -- get vs version info local info = vsinfo(version) if version < 2010 then return function(outputdir) + vprint("using project kind vs%d", version) vs200x.make(outputdir, info) end else return function(outputdir) + vprint("using project kind vs%d", version) vs201x.make(outputdir, info) end end |
