mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
f6d8436f81
* Try travis * wip * Try travis * try * try * try * try * Revert "try" This reverts commit7ecd73c2eb
. * try unbundled * Try unbundled2 * Try undundled3 * Try unbundled4 * Try5 * try gcc7 * try6 * Try clang * Try min * try ccache * try ccache stats * no sudo * try clang * try ccache * reset changelog * Try fix clang * try limit time * Faster * try timeout * try faster * Try * try * try * try * try * try * ccache * Fix * try test * try test * Fix try_listen in some vm's * fix * test * fix * cache timeout * packages * fix * fix * fix * try emb compiler * Try emb compiler * Revert "try emb compiler" This reverts commit471713cabe
. * try * Revert "Try emb compiler" This reverts commit95e632abf6
. * Skip long * fix * fix * ccache * fix * debug * Fxi test * test fix * tes fix * Fix * Fix link * Fix odbc link * Fxi test * fix boost unbundled include * fix test * fix test * test fix * fix tests * tests * Test fail
31 lines
1.1 KiB
CMake
31 lines
1.1 KiB
CMake
option (ENABLE_RDKAFKA "Enable kafka" ON)
|
|
|
|
if (ENABLE_RDKAFKA)
|
|
|
|
option (USE_INTERNAL_RDKAFKA_LIBRARY "Set to FALSE to use system librdkafka instead of the bundled" ${NOT_UNBUNDLED})
|
|
|
|
if (USE_INTERNAL_RDKAFKA_LIBRARY AND NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/librdkafka/CMakeLists.txt")
|
|
message (WARNING "submodule contrib/librdkafka is missing. to fix try run: \n git submodule update --init --recursive")
|
|
set (USE_INTERNAL_RDKAFKA_LIBRARY 0)
|
|
set (MISSING_INTERNAL_RDKAFKA_LIBRARY 1)
|
|
endif ()
|
|
|
|
if (NOT USE_INTERNAL_RDKAFKA_LIBRARY)
|
|
find_library (RDKAFKA_LIB rdkafka)
|
|
find_path (RDKAFKA_INCLUDE_DIR NAMES librdkafka/rdkafka.h PATHS ${RDKAFKA_INCLUDE_PATHS})
|
|
endif ()
|
|
|
|
if (RDKAFKA_LIB AND RDKAFKA_INCLUDE_DIR)
|
|
set (USE_RDKAFKA 1)
|
|
set (RDKAFKA_LIBRARY ${RDKAFKA_LIB} ${OPENSSL_LIBRARIES})
|
|
elseif (NOT MISSING_INTERNAL_RDKAFKA_LIBRARY)
|
|
set (USE_INTERNAL_RDKAFKA_LIBRARY 1)
|
|
set (RDKAFKA_INCLUDE_DIR "${ClickHouse_SOURCE_DIR}/contrib/librdkafka/src")
|
|
set (RDKAFKA_LIBRARY rdkafka)
|
|
set (USE_RDKAFKA 1)
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
message (STATUS "Using librdkafka=${USE_RDKAFKA}: ${RDKAFKA_INCLUDE_DIR} : ${RDKAFKA_LIBRARY}")
|