[*] dont recursively link past sharedlibs

(static only - i need to add more types later tho)
This commit is contained in:
Reece Wilson 2024-01-07 06:03:38 +00:00
parent 1768d90d6a
commit ed840f6a3f

View File

@ -85,6 +85,10 @@ function JsonProcessor(info)
links(this.info.name)
end
if (this:getMeta().projectType:lower() == "sharedlib") then
return
end
projectHandlers.runProjectLink(this, result, function(dep, soft)
auLinkProject(this:translateDep(dep), soft)
end)