aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-08-12 11:17:11 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2023-08-12 11:17:11 +0200
commit35358f8180468af1572c35425b1f60c899d6b07d (patch)
treef51678d129432b0a68d22de0178ccb8fd4f9a927 /CMakeLists.txt
parentea43d0f687391db08459ea43794ee97b93e654fa (diff)
parent44153a28e369943ea16545146fec81f7a62e44dd (diff)
downloadPrismLauncher-35358f8180468af1572c35425b1f60c899d6b07d.tar.gz
PrismLauncher-35358f8180468af1572c35425b1f60c899d6b07d.tar.bz2
PrismLauncher-35358f8180468af1572c35425b1f60c899d6b07d.zip
Merge remote-tracking branch 'upstream/staging' into chore/add-compiler-warnings
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 98e97950..a2853cb5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -92,8 +92,7 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DTOML_ENABLE_FLOAT16=0")
# set CXXFLAGS for build targets
set(CMAKE_CXX_FLAGS_RELEASE "-O2 -D_FORTIFY_SOURCE=2 ${CMAKE_CXX_FLAGS_RELEASE}")
-
-option(DEBUG_ADDRESS_SANITIZER "Enable Address Sanitizer in Debug builds" on)
+option(DEBUG_ADDRESS_SANITIZER "Enable Address Sanitizer in Debug builds" OFF)
# If this is a Debug build turn on address sanitiser
if ((CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo") AND DEBUG_ADDRESS_SANITIZER)