From 6761e980aeab772dba2874b96ca692a01cdcd7f7 Mon Sep 17 00:00:00 2001 From: Jamie Reece Wilson Date: Thu, 24 Aug 2023 12:11:05 +0100 Subject: [PATCH] [*] Update this one static runtime path --- Core/project.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Core/project.lua b/Core/project.lua index 7aa4422..602f5d6 100644 --- a/Core/project.lua +++ b/Core/project.lua @@ -116,7 +116,12 @@ local function configureProjectForPlatform(platform, projectType) if (platform == "win32") then characterset(Aurora.Settings.sMsvcDefCharset) - staticruntime("Off") + + if (Aurora.Settings.bStaticRuntime) then + staticruntime("On") + else + staticruntime("Off") + end if (Aurora.Settings.bHotswap) then justmycode("On")