-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #396 from GEOS-ESM/feature/mathomp4/add-jemalloc-v3
Add FindJeMalloc.cmake (v3 branch)
- Loading branch information
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# - 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 ENV JEMALLOC_INCLUDE_DIR) | ||
|
||
find_library(JeMalloc_LIBRARIES | ||
NAMES jemalloc | ||
HINTS ${JEMALLOC_ROOT_DIR}/lib ENV JEMALLOC_LIB_DIR) | ||
|
||
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() |