diff options
author | saturneric <[email protected]> | 2023-12-14 12:39:48 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-12-14 12:39:48 +0000 |
commit | beafe53c1b8671d8e84f0546eb404597300448c7 (patch) | |
tree | f9b3e2d1f1c94c344fe3f9df919f4be2e56b4cae /third_party | |
parent | fix: slove some memory issues (diff) | |
download | GpgFrontend-beafe53c1b8671d8e84f0546eb404597300448c7.tar.gz GpgFrontend-beafe53c1b8671d8e84f0546eb404597300448c7.zip |
fix: slove issues on memory and add asan support for debug
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/third_party/CMakeLists.txt b/third_party/CMakeLists.txt index 68307dab..79cd322b 100644 --- a/third_party/CMakeLists.txt +++ b/third_party/CMakeLists.txt @@ -31,7 +31,10 @@ add_subdirectory(json EXCLUDE_FROM_ALL) add_subdirectory(spdlog EXCLUDE_FROM_ALL) set(MI_SECURE ON) -set(MI_TRACK_VALGRIND ON) +if(${CMAKE_BUILD_TYPE} STREQUAL "Debug") + # set(MI_TRACK_VALGRIND ON) + set(MI_TRACK_ASAN ON) +endif() add_subdirectory(mimalloc EXCLUDE_FROM_ALL) set(INSTALL_GTEST OFF) |