ClickHouse/cmake/find_gperftools.cmake
proller 38040f5323 Сmake: more info in message about libreadline (#376)
* Cmake: more info in message about libreadline

* icu cmake

* cmake: glib message
2017-01-20 23:57:30 +04:00

11 lines
420 B
CMake

if (USE_INTERNAL_GPERFTOOLS_LIBRARY)
set(GPERFTOOLS_INCLUDE_DIR "${ClickHouse_SOURCE_DIR}/contrib/libtcmalloc/include/")
set(GPERFTOOLS_TCMALLOC tcmalloc_minimal_internal)
include_directories (BEFORE ${GPERFTOOLS_INCLUDE_DIR})
else ()
find_package (Gperftools REQUIRED)
include_directories (${GPERFTOOLS_INCLUDE_DIR})
endif ()
message(STATUS "Using gperftools: ${GPERFTOOLS_INCLUDE_DIR} : ${GPERFTOOLS_TCMALLOC}")