The mqfilter was not built by default even though it should have been. This has been fixed but the filter is built only if librabbitmq is found. This was done to avoid having the librabbitmq and its development headers as a hard dependency.
27 lines
973 B
CMake
27 lines
973 B
CMake
# This CMake file tries to find the the RabbitMQ 0.5 library
|
|
# The following variables are set:
|
|
# RABBITMQ_FOUND - System has RabbitMQ client
|
|
# RABBITMQ_LIBRARIES - The RabbitMQ client library
|
|
# RABBITMQ_HEADERS - The RabbitMQ client headers
|
|
|
|
include(CheckCSourceCompiles)
|
|
find_library(RABBITMQ_LIBRARIES NAMES rabbitmq)
|
|
find_path(RABBITMQ_HEADERS amqp.h)
|
|
|
|
if(${RABBITMQ_LIBRARIES} MATCHES "NOTFOUND")
|
|
set(RABBITMQ_FOUND FALSE CACHE INTERNAL "")
|
|
message(STATUS "RabbitMQ library not found.")
|
|
unset(RABBITMQ_LIBRARIES)
|
|
else()
|
|
set(RABBITMQ_FOUND TRUE CACHE INTERNAL "")
|
|
message(STATUS "Found RabbitMQ library: ${RABBITMQ_LIBRARIES}")
|
|
endif()
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${RABBITMQ_HEADERS})
|
|
|
|
check_c_source_compiles("#include <amqp.h>\n int main(){if(AMQP_DELIVERY_PERSISTENT){return 0;}return 1;}" HAVE_RABBITMQ50)
|
|
|
|
if(RABBITMQ_FOUND AND NOT HAVE_RABBITMQ50)
|
|
message(WARNING "Old version of RabbitMQ-C library found. Version 0.5 or newer is required.")
|
|
endif()
|