43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CMake
		
	
	
		
		
			
		
	
	
			43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CMake
		
	
	
| 
								 | 
							
								# -*- cmake -*-
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# - Find Google perftools
							 | 
						||
| 
								 | 
							
								# Find the Google perftools includes and libraries
							 | 
						||
| 
								 | 
							
								# This module defines
							 | 
						||
| 
								 | 
							
								#  GOOGLE_PERFTOOLS_INCLUDE_DIR, where to find heap-profiler.h, etc.
							 | 
						||
| 
								 | 
							
								#  GOOGLE_PERFTOOLS_FOUND, If false, do not try to use Google perftools.
							 | 
						||
| 
								 | 
							
								# also defined for general use are
							 | 
						||
| 
								 | 
							
								#  TCMALLOC_LIBRARY, where to find the tcmalloc library.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								FIND_PATH(GOOGLE_PERFTOOLS_INCLUDE_DIR google/heap-profiler.h
							 | 
						||
| 
								 | 
							
								/usr/local/include
							 | 
						||
| 
								 | 
							
								/usr/include
							 | 
						||
| 
								 | 
							
								)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								SET(TCMALLOC_NAMES ${TCMALLOC_NAMES} tcmalloc)
							 | 
						||
| 
								 | 
							
								FIND_LIBRARY(TCMALLOC_LIBRARY
							 | 
						||
| 
								 | 
							
								  NAMES ${TCMALLOC_NAMES}
							 | 
						||
| 
								 | 
							
								  PATHS /usr/lib /usr/local/lib
							 | 
						||
| 
								 | 
							
								  )
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								IF (TCMALLOC_LIBRARY AND GOOGLE_PERFTOOLS_INCLUDE_DIR)
							 | 
						||
| 
								 | 
							
								    SET(TCMALLOC_LIBRARIES ${TCMALLOC_LIBRARY})
							 | 
						||
| 
								 | 
							
								    SET(GOOGLE_PERFTOOLS_FOUND "YES")
							 | 
						||
| 
								 | 
							
								ELSE (TCMALLOC_LIBRARY AND GOOGLE_PERFTOOLS_INCLUDE_DIR)
							 | 
						||
| 
								 | 
							
								  SET(GOOGLE_PERFTOOLS_FOUND "NO")
							 | 
						||
| 
								 | 
							
								ENDIF (TCMALLOC_LIBRARY AND GOOGLE_PERFTOOLS_INCLUDE_DIR)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								IF (GOOGLE_PERFTOOLS_FOUND)
							 | 
						||
| 
								 | 
							
								   IF (NOT GOOGLE_PERFTOOLS_FIND_QUIETLY)
							 | 
						||
| 
								 | 
							
								      MESSAGE(STATUS "Found Google perftools: ${GOOGLE_PERFTOOLS_LIBRARIES}")
							 | 
						||
| 
								 | 
							
								   ENDIF (NOT GOOGLE_PERFTOOLS_FIND_QUIETLY)
							 | 
						||
| 
								 | 
							
								ELSE (GOOGLE_PERFTOOLS_FOUND)
							 | 
						||
| 
								 | 
							
								   IF (GOOGLE_PERFTOOLS_FIND_REQUIRED)
							 | 
						||
| 
								 | 
							
								      MESSAGE(FATAL_ERROR "Could not find Google perftools library")
							 | 
						||
| 
								 | 
							
								   ENDIF (GOOGLE_PERFTOOLS_FIND_REQUIRED)
							 | 
						||
| 
								 | 
							
								ENDIF (GOOGLE_PERFTOOLS_FOUND)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								MARK_AS_ADVANCED(
							 | 
						||
| 
								 | 
							
								  TCMALLOC_LIBRARY
							 | 
						||
| 
								 | 
							
								  GOOGLE_PERFTOOLS_INCLUDE_DIR
							 | 
						||
| 
								 | 
							
								  )
							 |