From 7c9bc16535a2cf65f59699c90760b9f389c3249a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Thu, 3 Jun 2021 17:22:12 +0200 Subject: [PATCH] XMake: Add asan mode --- xmake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake.lua b/xmake.lua index 34f8c8a21..58dc3d5fc 100644 --- a/xmake.lua +++ b/xmake.lua @@ -105,7 +105,7 @@ add_requires("newtondynamics", { debug = is_plat("windows") and is_mode("debug") set_project("NazaraEngine") -add_rules("mode.debug", "mode.releasedbg") +add_rules("mode.asan", "mode.debug", "mode.releasedbg") add_rules("plugin.vsxmake.autoupdate") add_rules("build_rendererplugins")