fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
619 B
21 lines
619 B
# - Find JeMalloc library
|
|
# Find the native JeMalloc includes and library
|
|
#
|
|
# JEMALLOC_INCLUDE_DIR - where to find jemalloc.h, etc.
|
|
# JEMALLOC_LIBRARIES - List of libraries when using jemalloc.
|
|
# JEMALLOC_FOUND - True if jemalloc found.
|
|
|
|
find_path(JEMALLOC_INCLUDE_DIR
|
|
NAMES jemalloc/jemalloc.h
|
|
HINTS ${JEMALLOC_ROOT_DIR}/include)
|
|
|
|
find_library(JEMALLOC_LIBRARIES
|
|
NAMES jemalloc
|
|
HINTS ${JEMALLOC_ROOT_DIR}/lib)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(jemalloc DEFAULT_MSG JEMALLOC_LIBRARIES JEMALLOC_INCLUDE_DIR)
|
|
|
|
mark_as_advanced(
|
|
JEMALLOC_LIBRARIES
|
|
JEMALLOC_INCLUDE_DIR)
|
|
|