diff options
| author | ruki <[email protected]> | 2025-09-09 15:45:00 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-09-09 15:45:00 +0800 |
| commit | 5166d71131f62fb50c745510bcd8c54097bd6c05 (patch) | |
| tree | 7d4d3724f8f09907f0186498e3a38fbaeb491574 /xmake/plugins | |
| parent | e115e55c064eb6b475914989ea4d5fbaa9f4f83c (diff) | |
| parent | a0c14f1bced28c8f9cfafa20bcf7146ff3de3345 (diff) | |
Merge pull request #6780 from xmake-io/opti
Add benchmarks and optimize config/build targets
Diffstat (limited to 'xmake/plugins')
| -rw-r--r-- | xmake/plugins/project/vsxmake/getinfo.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xmake/plugins/project/vsxmake/getinfo.lua b/xmake/plugins/project/vsxmake/getinfo.lua index 613a41404..08c10ca60 100644 --- a/xmake/plugins/project/vsxmake/getinfo.lua +++ b/xmake/plugins/project/vsxmake/getinfo.lua @@ -22,6 +22,7 @@ import("core.base.option") import("core.base.semver") import("core.base.hashset") +import("core.tool.toolchain") import("core.project.config") import("core.project.project") import("core.platform.platform") @@ -484,6 +485,9 @@ function main(outputdir, vsinfo) -- update config files generate_configfiles() + -- save toolchain configs + toolchain.save() + -- ensure to enter project directory os.cd(project.directory()) |
