From ed840f6a3f94a0a5fc042188d2fa08fc5cd2ad06 Mon Sep 17 00:00:00 2001 From: Jamie Reece Wilson Date: Sun, 7 Jan 2024 06:03:38 +0000 Subject: [PATCH] [*] dont recursively link past sharedlibs (static only - i need to add more types later tho) --- Core/JSON/jsonProjectBase.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Core/JSON/jsonProjectBase.lua b/Core/JSON/jsonProjectBase.lua index 65dd56d..a5c86bc 100644 --- a/Core/JSON/jsonProjectBase.lua +++ b/Core/JSON/jsonProjectBase.lua @@ -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)