We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e63d9c4 + d2758b5 commit 8cc5ec7Copy full SHA for 8cc5ec7
CMakeLists.txt
@@ -33,10 +33,13 @@ option(USE_MSAN "Enable MemorySanitizer checks" OFF)
33
option(USE_VALGRIND "Enable Valgrind instrumentation" OFF)
34
35
# set UMF_PROXY_LIB_BASED_ON_POOL to one of: SCALABLE or JEMALLOC
36
+set(KNOWN_PROXY_LIB_POOLS SCALABLE JEMALLOC)
37
set(UMF_PROXY_LIB_BASED_ON_POOL
38
SCALABLE
39
CACHE STRING
40
"A UMF pool the proxy library is based on (SCALABLE or JEMALLOC)")
41
+set_property(CACHE UMF_PROXY_LIB_BASED_ON_POOL
42
+ PROPERTY STRINGS ${KNOWN_PROXY_LIB_POOLS})
43
44
set(KNOWN_BUILD_TYPES Release Debug RelWithDebInfo MinSizeRel)
45
string(REPLACE ";" " " KNOWN_BUILD_TYPES_STR "${KNOWN_BUILD_TYPES}")
0 commit comments