From f67d8615cacc31d79ba88fc13efa4e2b9c3a48e8 Mon Sep 17 00:00:00 2001 From: Sergio Martins Date: Thu, 20 May 2021 16:30:23 +0100 Subject: [PATCH] cmake: Remove manually setting ASAN on Windows It's done by ECM now --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index be24a861..9970ac3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -241,9 +241,6 @@ endif() if(${PROJECT_NAME}_DEVELOPER_MODE) include(ECMEnableSanitizers) - if (ECM_ENABLE_SANITIZERS AND MSVC) - add_compile_options(-fsanitize=address) - endif() if(${PROJECT_NAME}_TESTS) enable_testing()