1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
# (C) Copyright 2011- ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation nor
# does it submit to any jurisdiction.
##############################################################################
#.rst:
#
# FindTcmalloc
# ============
#
# Find the Tcmalloc library. ::
#
# find_package( Tcmalloc [REQUIRED] [QUIET] )
#
# Output variables
# ----------------
#
# The following CMake variables are set on completion:
#
# :Tcmalloc_FOUND: true if Tcmalloc is found on the system
# :TCMALLOC_LIBRARIES: full paths to requested Tcmalloc libraries
# :TCMALLOC_LIBRARY_DIR: Directory containing the TCMALLOC_LIBRARIES
# :TCMALLOC_INCLUDE_DIRS: Tcmalloc include directories
#
# Input variables
# ---------------
#
# The following CMake / Environment variables are considered in order:
#
# :Tcmalloc_ROOT: CMake variable / Environment variable
#
##############################################################################
find_library( TCMALLOC_LIBRARIES NAMES tcmalloc )
find_path( TCMALLOC_INCLUDE_DIRS NAMES gperftools/tcmalloc.h )
if( TCMALLOC_LIBRARIES )
get_filename_component( TCMALLOC_LIBRARY_DIR ${TCMALLOC_LIBRARIES} DIRECTORY )
endif()
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Tcmalloc DEFAULT_MSG
TCMALLOC_LIBRARIES
TCMALLOC_INCLUDE_DIRS
)
mark_as_advanced(
TCMALLOC_LIBRARIES
TCMALLOC_INCLUDE_DIRS
TCMALLOC_LIBRARY_DIR
)
|