File: FindGooglePerftools.cmake

package info (click to toggle)
broccoli-python 0.62-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 460 kB
  • ctags: 105
  • sloc: python: 407; sh: 202; makefile: 21
file content (56 lines) | stat: -rw-r--r-- 1,780 bytes parent folder | download | duplicates (23)
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
55
56
# - Try to find GooglePerftools headers and libraries
#
# Usage of this module as follows:
#
#     find_package(GooglePerftools)
#
# Variables used by this module, they can change the default behaviour and need
# to be set before calling find_package:
#
#  GooglePerftools_ROOT_DIR  Set this variable to the root installation of
#                            GooglePerftools if the module has problems finding 
#                            the proper installation path.
#
# Variables defined by this module:
#
#  GOOGLEPERFTOOLS_FOUND              System has GooglePerftools libs/headers
#  TCMALLOC_FOUND                     System has GooglePerftools tcmalloc library
#  GooglePerftools_LIBRARIES          The GooglePerftools libraries
#  GooglePerftools_LIBRARIES_DEBUG    The GooglePerftools libraries for heap checking.
#  GooglePerftools_INCLUDE_DIR        The location of GooglePerftools headers

find_path(GooglePerftools_ROOT_DIR
    NAMES include/google/heap-profiler.h
)

find_library(GooglePerftools_LIBRARIES_DEBUG
    NAMES tcmalloc_and_profiler
    HINTS ${GooglePerftools_ROOT_DIR}/lib
)

find_library(GooglePerftools_LIBRARIES
    NAMES tcmalloc tcmalloc_minimal
    HINTS ${GooglePerftools_ROOT_DIR}/lib
)

find_path(GooglePerftools_INCLUDE_DIR
    NAMES google/heap-profiler.h
    HINTS ${GooglePerftools_ROOT_DIR}/include
)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(GooglePerftools DEFAULT_MSG
    GooglePerftools_LIBRARIES
    GooglePerftools_LIBRARIES_DEBUG
    GooglePerftools_INCLUDE_DIR
)
find_package_handle_standard_args(tcmalloc DEFAULT_MSG
    GooglePerftools_LIBRARIES
)

mark_as_advanced(
    GooglePerftools_ROOT_DIR
    GooglePerftools_LIBRARIES
    GooglePerftools_LIBRARIES_DEBUG
    GooglePerftools_INCLUDE_DIR
)