Restore .lib extension on libraries from the MSC tool adapter

This commit is contained in:
Jason Perkins 2015-02-14 15:30:17 -05:00
parent 9ac067355d
commit 79507f946c

View File

@ -205,6 +205,9 @@
function msc.getlinks(cfg)
local links = config.getlinks(cfg, "system", "fullpath")
for i = 1, #links do
links[i] = path.appendextension(links[i], ".lib")
end
return links
end