fork of https://github.com/rust-rocksdb/rust-rocksdb for nextgraph
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.
30 lines
905 B
30 lines
905 B
1 year ago
|
# - Find JeMalloc library
|
||
|
# Find the native JeMalloc includes and library
|
||
|
#
|
||
|
# JeMalloc_INCLUDE_DIRS - where to find jemalloc.h, etc.
|
||
|
# JeMalloc_LIBRARIES - List of libraries when using jemalloc.
|
||
|
# JeMalloc_FOUND - True if jemalloc found.
|
||
|
|
||
|
find_path(JeMalloc_INCLUDE_DIRS
|
||
|
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_DIRS)
|
||
|
|
||
|
mark_as_advanced(
|
||
|
JeMalloc_LIBRARIES
|
||
|
JeMalloc_INCLUDE_DIRS)
|
||
|
|
||
|
if(JeMalloc_FOUND AND NOT (TARGET JeMalloc::JeMalloc))
|
||
|
add_library (JeMalloc::JeMalloc UNKNOWN IMPORTED)
|
||
|
set_target_properties(JeMalloc::JeMalloc
|
||
|
PROPERTIES
|
||
|
IMPORTED_LOCATION ${JeMalloc_LIBRARIES}
|
||
|
INTERFACE_INCLUDE_DIRECTORIES ${JeMalloc_INCLUDE_DIRS})
|
||
|
endif()
|