From daf5b80a6ff862ddcf94d4f17675c918652d1eac Mon Sep 17 00:00:00 2001 From: Markus Makela Date: Thu, 7 May 2015 11:42:07 +0300 Subject: [PATCH] Added WITH_JEMALLOC to the CMake cache --- macros.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/macros.cmake b/macros.cmake index 8043120d1..2839859cc 100644 --- a/macros.cmake +++ b/macros.cmake @@ -65,6 +65,9 @@ macro(set_variables) # Use tcmalloc as the memory allocator set(WITH_TCMALLOC FALSE CACHE BOOL "Use tcmalloc as the memory allocator") + # Use jemalloc as the memory allocator + set(WITH_JEMALLOC FALSE CACHE BOOL "Use jemalloc as the memory allocator") + # Build tests set(BUILD_TESTS FALSE CACHE BOOL "Build tests")