mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
594c535bd4
* Build fixes * fix * Fix * fix * Fix install(export.. * Freebsd fixes * Freebsd fixes * Fix warning * fix * More PRIVATE linking * Fix review * Timmy * fix * fix
14 lines
356 B
CMake
14 lines
356 B
CMake
# Check if gperf was installed
|
|
find_program(GPERF gperf)
|
|
if(GPERF)
|
|
option(ENABLE_GPERF "Use gperf function hash generator tool" ${ENABLE_LIBRARIES})
|
|
endif()
|
|
if (ENABLE_GPERF)
|
|
if(NOT GPERF)
|
|
message(FATAL_ERROR "Could not find the program gperf")
|
|
endif()
|
|
set(USE_GPERF 1)
|
|
endif()
|
|
|
|
message(STATUS "Using gperf=${USE_GPERF}: ${GPERF}")
|