From 16b527e3cf16d12e592eb78725558e5562cb7c2a Mon Sep 17 00:00:00 2001 From: Muzychenko Andrey <33288308+k4zmu2a@users.noreply.github.com> Date: Tue, 9 Nov 2021 16:50:09 +0300 Subject: [PATCH] Added AddressSanitizer to Windows build config, disabled by default. VS older that 2019 do not support it. Game passes ASan checks at the moment of writing. --- CMakeSettings.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeSettings.json b/CMakeSettings.json index 2b1b02c..bae8b07 100644 --- a/CMakeSettings.json +++ b/CMakeSettings.json @@ -9,7 +9,8 @@ "installRoot": "${projectDir}\\out\\install\\${name}", "cmakeCommandArgs": "", "buildCommandArgs": "", - "ctestCommandArgs": "" + "ctestCommandArgs": "", + "addressSanitizerEnabled": false }, { "name": "x86-Debug", @@ -20,7 +21,8 @@ "cmakeCommandArgs": "", "buildCommandArgs": "", "ctestCommandArgs": "", - "inheritEnvironments": [ "msvc_x86" ] + "inheritEnvironments": [ "msvc_x86" ], + "addressSanitizerEnabled": false }, { "name": "x86-Release",