From 10ace70f96373e5eb59cae061136ed7f3611b7c9 Mon Sep 17 00:00:00 2001 From: TheCherno Date: Thu, 15 Apr 2021 14:45:11 +1000 Subject: [PATCH] staticruntime off --- premake5.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/premake5.lua b/premake5.lua index 25c9db99..dc4950cd 100644 --- a/premake5.lua +++ b/premake5.lua @@ -1,6 +1,7 @@ project "ImGui" kind "StaticLib" language "C++" + staticruntime "off" targetdir ("bin/" .. outputdir .. "/%{prj.name}") objdir ("bin-int/" .. outputdir .. "/%{prj.name}") @@ -22,13 +23,11 @@ project "ImGui" filter "system:windows" systemversion "latest" cppdialect "C++17" - staticruntime "On" filter "system:linux" pic "On" systemversion "latest" cppdialect "C++17" - staticruntime "On" filter "configurations:Debug" runtime "Debug"