From cdb6401c65e8cf85af9fdcf72308aacf4759e1bb Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Tue, 14 Apr 2026 11:49:31 +0200 Subject: [PATCH] chore: don't waste time building CMake mimalloc that we don't use (#13402) --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0647e747ab..1da17dfa14 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -129,6 +129,7 @@ if(USE_MIMALLOC) # cadical, it might be worth reorganizing the directory structure. SOURCE_DIR "${CMAKE_BINARY_DIR}/mimalloc/src/mimalloc" + EXCLUDE_FROM_ALL ) FetchContent_MakeAvailable(mimalloc) endif()