diff options
| author | OpportunityLiu <[email protected]> | 2019-08-23 16:40:18 +0800 |
|---|---|---|
| committer | OpportunityLiu <[email protected]> | 2019-08-23 16:40:18 +0800 |
| commit | dbfd0769b9d840da2b3ec38bcc80bb3aa977fc31 (patch) | |
| tree | 7a58aa69a76f57fc2ccd7362b40e13900339ce4d /xmake/plugins/project/vsxmake/getinfo.lua | |
| parent | 64b44bca46aa238b9135053bec990fe4f6f74855 (diff) | |
fix escape; remove duplicate resolve
Diffstat (limited to 'xmake/plugins/project/vsxmake/getinfo.lua')
| -rw-r--r-- | xmake/plugins/project/vsxmake/getinfo.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/project/vsxmake/getinfo.lua b/xmake/plugins/project/vsxmake/getinfo.lua index 8cfe46591..149df6721 100644 --- a/xmake/plugins/project/vsxmake/getinfo.lua +++ b/xmake/plugins/project/vsxmake/getinfo.lua @@ -267,7 +267,7 @@ function main(outputdir, vsinfo) -- init solution directory vsinfo.solution_dir = path.absolute(path.join(outputdir, "vsxmake" .. vsinfo.vstudio_version)) - vsinfo.programdir = xmake.programdir() + vsinfo.programdir = _make_dirs(xmake.programdir()) vsinfo.projectdir = project.directory() vsinfo.sln_projectfile = path.relative(project.file(), vsinfo.solution_dir) local projectfile = path.filename(project.file()) |
