2021-04-09 00:28:24 +00:00
|
|
|
if (OS_DARWIN AND COMPILER_GCC)
|
|
|
|
# AMQP-CPP requires libuv which cannot be built with GCC in macOS due to a bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93082
|
|
|
|
set (ENABLE_AMQPCPP OFF CACHE INTERNAL "")
|
|
|
|
endif()
|
|
|
|
|
2020-07-15 11:16:00 +00:00
|
|
|
option(ENABLE_AMQPCPP "Enalbe AMQP-CPP" ${ENABLE_LIBRARIES})
|
2020-07-10 09:47:50 +00:00
|
|
|
|
2020-08-14 15:44:04 +00:00
|
|
|
if (NOT ENABLE_AMQPCPP)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2020-05-20 04:28:55 +00:00
|
|
|
if (NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/AMQP-CPP/CMakeLists.txt")
|
|
|
|
message (WARNING "submodule contrib/AMQP-CPP is missing. to fix try run: \n git submodule update --init --recursive")
|
2020-08-14 15:44:04 +00:00
|
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Can't find internal AMQP-CPP library")
|
|
|
|
set (USE_AMQPCPP 0)
|
|
|
|
return()
|
2020-05-20 04:28:55 +00:00
|
|
|
endif ()
|
|
|
|
|
2020-08-14 15:44:04 +00:00
|
|
|
set (USE_AMQPCPP 1)
|
|
|
|
set (AMQPCPP_LIBRARY AMQP-CPP)
|
2020-05-20 04:28:55 +00:00
|
|
|
|
2020-08-14 15:44:04 +00:00
|
|
|
set (AMQPCPP_INCLUDE_DIR "${ClickHouse_SOURCE_DIR}/contrib/AMQP-CPP/include")
|
|
|
|
list (APPEND AMQPCPP_INCLUDE_DIR
|
|
|
|
"${ClickHouse_SOURCE_DIR}/contrib/AMQP-CPP/include"
|
|
|
|
"${ClickHouse_SOURCE_DIR}/contrib/AMQP-CPP")
|
2020-05-20 04:28:55 +00:00
|
|
|
|
|
|
|
message (STATUS "Using AMQP-CPP=${USE_AMQPCPP}: ${AMQPCPP_INCLUDE_DIR} : ${AMQPCPP_LIBRARY}")
|