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
19 lines
640 B
CMake
19 lines
640 B
CMake
option(ENABLE_ICU "Enable ICU" ${ENABLE_LIBRARIES})
|
|
|
|
if(ENABLE_ICU)
|
|
if (APPLE)
|
|
set(ICU_ROOT "/usr/local/opt/icu4c" CACHE STRING "")
|
|
endif()
|
|
find_package(ICU COMPONENTS i18n uc data) # TODO: remove Modules/FindICU.cmake after cmake 3.7
|
|
#set (ICU_LIBRARIES ${ICU_I18N_LIBRARY} ${ICU_UC_LIBRARY} ${ICU_DATA_LIBRARY} CACHE STRING "")
|
|
if(ICU_FOUND)
|
|
set(USE_ICU 1)
|
|
endif()
|
|
endif()
|
|
|
|
if(USE_ICU)
|
|
message(STATUS "Using icu=${USE_ICU}: ${ICU_INCLUDE_DIR} : ${ICU_LIBRARIES}")
|
|
else()
|
|
message(STATUS "Build without ICU (support for collations and charset conversion functions will be disabled)")
|
|
endif()
|