From 2db407d1e9ce00bc8e6363e66d845fc9ec78628b Mon Sep 17 00:00:00 2001 From: Daan Leijen Date: Fri, 20 Dec 2024 11:54:39 -0800 Subject: [PATCH] revert back to generating mimalloc.dll instead of mimalloc-override.dll --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e7a6aca..30a6b3e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -673,8 +673,8 @@ if (MI_OVERRIDE) target_compile_definitions(mimalloc PRIVATE MI_MALLOC_OVERRIDE) if (WIN32) # on windows we should generate mimalloc-override.dll. - string(REPLACE "mimalloc" "mimalloc-override" mi_override_output_name ${mi_basename}) - set_target_properties(mimalloc PROPERTIES OUTPUT_NAME ${mi_override_output_name}) + # string(REPLACE "mimalloc" "mimalloc-override" mi_override_output_name ${mi_basename}) + # set_target_properties(mimalloc PROPERTIES OUTPUT_NAME ${mi_override_output_name}) endif() endif() if(NOT WIN32)