mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
46 lines
1.4 KiB
CMake
46 lines
1.4 KiB
CMake
set (LIBRARY_DIR ${ClickHouse_SOURCE_DIR}/contrib/AMQP-CPP)
|
|
|
|
set (SRCS
|
|
${LIBRARY_DIR}/src/array.cpp
|
|
${LIBRARY_DIR}/src/channel.cpp
|
|
${LIBRARY_DIR}/src/channelimpl.cpp
|
|
${LIBRARY_DIR}/src/connectionimpl.cpp
|
|
${LIBRARY_DIR}/src/deferredcancel.cpp
|
|
${LIBRARY_DIR}/src/deferredconfirm.cpp
|
|
${LIBRARY_DIR}/src/deferredconsumer.cpp
|
|
${LIBRARY_DIR}/src/deferredextreceiver.cpp
|
|
${LIBRARY_DIR}/src/deferredget.cpp
|
|
${LIBRARY_DIR}/src/deferredpublisher.cpp
|
|
${LIBRARY_DIR}/src/deferredreceiver.cpp
|
|
${LIBRARY_DIR}/src/field.cpp
|
|
${LIBRARY_DIR}/src/flags.cpp
|
|
${LIBRARY_DIR}/src/linux_tcp/openssl.cpp
|
|
${LIBRARY_DIR}/src/linux_tcp/tcpconnection.cpp
|
|
${LIBRARY_DIR}/src/inbuffer.cpp
|
|
${LIBRARY_DIR}/src/receivedframe.cpp
|
|
${LIBRARY_DIR}/src/table.cpp
|
|
${LIBRARY_DIR}/src/watchable.cpp
|
|
)
|
|
|
|
add_library(amqp-cpp ${SRCS})
|
|
|
|
target_compile_options (amqp-cpp
|
|
PRIVATE
|
|
-Wno-old-style-cast
|
|
-Wno-inconsistent-missing-destructor-override
|
|
-Wno-deprecated
|
|
-Wno-unused-parameter
|
|
-Wno-shadow
|
|
-Wno-tautological-type-limit-compare
|
|
-Wno-extra-semi
|
|
# NOTE: disable all warnings at last because the warning:
|
|
# "conversion function converting 'XXX' to itself will never be used"
|
|
# doesn't have it's own diagnostic flag yet.
|
|
-w
|
|
)
|
|
|
|
target_include_directories (amqp-cpp SYSTEM PUBLIC ${LIBRARY_DIR}/include)
|
|
|
|
target_link_libraries (amqp-cpp PUBLIC ssl)
|
|
|