Backout changeset c477521856869d8d166f62cdbf710f2328c175f1

This commit is contained in:
Jason Perkins 2015-03-25 19:29:33 -04:00
parent 9ac067355d
commit dc187cb3e3

View File

@ -329,16 +329,17 @@
---
function vstudio.getLinks(cfg, explicit)
-- System libraries are undecorated, add the required extension
local links = config.getlinks(cfg, "system", "fullpath")
for i = 1, #links do
links[i] = path.appendextension(links[i], ".lib")
local links = {}
-- If we need sibling projects to be listed explicitly, grab them first
if explicit then
links = config.getlinks(cfg, "siblings", "fullpath")
end
-- If we need sibling projects to be listed explicitly, add them on
if explicit then
local siblings = config.getlinks(cfg, "siblings", "fullpath")
links = table.join(links, siblings)
-- Then the system libraries, which come undecorated
local system = config.getlinks(cfg, "system", "fullpath")
for i = 1, #system do
table.insert(links, path.appendextension(system[i], ".lib"))
end
return links