From b3d345610adaf700f169034df976fa111660dd57 Mon Sep 17 00:00:00 2001 From: Gliniak Date: Mon, 17 Feb 2025 18:47:49 +0100 Subject: [PATCH] [Premake] Added ASAN to Checked configuration. There is issue with ImGui dialogs desctruction that always triggers ASAN --- premake5.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/premake5.lua b/premake5.lua index a5508ba75..80870afce 100644 --- a/premake5.lua +++ b/premake5.lua @@ -50,6 +50,10 @@ filter("kind:StaticLib") filter("configurations:Checked") runtime("Debug") + sanitize("Address") + flags("NoIncrementalLink") + editandcontinue("Off") + staticruntime("Off") optimize("Off") defines({ "DEBUG",