diff options
| author | OpportunityLiu <[email protected]> | 2019-07-19 00:03:57 +0800 |
|---|---|---|
| committer | OpportunityLiu <[email protected]> | 2019-07-19 11:48:33 +0800 |
| commit | ca45f8941e0b69582021d34061873c8752f76154 (patch) | |
| tree | 89a6bf45c6dc6ef52872b5d99d8b622c43ce9835 /xmake/plugins/project/vstudio/vs.lua | |
| parent | e765aa75b91f847e93893271abe1cf265126da54 (diff) | |
fix config
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 e108ef22f..1284828c6 100644 --- a/xmake/plugins/project/vstudio/vs.lua +++ b/xmake/plugins/project/vstudio/vs.lua @@ -22,6 +22,7 @@ import("impl.vs200x") import("impl.vs201x") import("impl.vsinfo") +import("core.project.config") -- make factory function make(version) @@ -34,7 +35,7 @@ function make(version) -- get vs version info local info = vsinfo(version) - if vsver < 2010 then + if version < 2010 then return function(outputdir) vs200x.make(outputdir, info) end |
