diff options
| author | ruki <[email protected]> | 2020-12-17 00:33:09 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-12-17 00:33:09 +0800 |
| commit | 55ceaffc18102b40bee2916335303e6861e5cfcb (patch) | |
| tree | 1efe82b5501f26205f9d20962224bf453c3187f1 /xmake/plugins | |
| parent | 83e09c0fa0ea1cc9b40860d9f58676b0a4f12a38 (diff) | |
improve to load platform for vs plugin
Diffstat (limited to 'xmake/plugins')
| -rw-r--r-- | xmake/plugins/project/vstudio/impl/vs201x.lua | 2 | ||||
| -rw-r--r-- | xmake/plugins/project/vsxmake/getinfo.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmake/plugins/project/vstudio/impl/vs201x.lua b/xmake/plugins/project/vstudio/impl/vs201x.lua index 7bc9f9d45..10784c5ea 100644 --- a/xmake/plugins/project/vstudio/impl/vs201x.lua +++ b/xmake/plugins/project/vstudio/impl/vs201x.lua @@ -238,7 +238,7 @@ function make(outputdir, vsinfo) project.clear() -- check platform - platform.load(config.plat()):check() + platform.load(config.plat(), arch):check() -- check project options project.check() diff --git a/xmake/plugins/project/vsxmake/getinfo.lua b/xmake/plugins/project/vsxmake/getinfo.lua index 0ba11514c..7a82036bc 100644 --- a/xmake/plugins/project/vsxmake/getinfo.lua +++ b/xmake/plugins/project/vsxmake/getinfo.lua @@ -297,7 +297,7 @@ function main(outputdir, vsinfo) project.clear() -- check platform - platform.load(config.plat()):check() + platform.load(config.plat(), arch):check() -- check project options project.check() |
