From ce24026ab025cacaa8813eb1dca92e4304977519 Mon Sep 17 00:00:00 2001 From: Jamie Reece Wilson Date: Sun, 2 Jul 2023 14:26:33 +0100 Subject: [PATCH] [*] make .type optional --- Core/main.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/main.lua b/Core/main.lua index 77e6e5c..108892d 100644 --- a/Core/main.lua +++ b/Core/main.lua @@ -26,6 +26,7 @@ local function normalizeSourceRoot(path) end local function extendInfo(this) + if (not this.projectType) then return end local type = this.projectType:lower() this.isShared = type == "sharedlib" this.isStatic = type == "staticlib"