代码拉取完成,页面将自动刷新
project("kafka-tools")
#---------------------------
# Check boost directory
#---------------------------
if(DEFINED ENV{BOOST_ROOT})
set(Boost_INCLUDE_DIRS $ENV{BOOST_ROOT}/include)
set(Boost_LIBRARY_DIRS $ENV{BOOST_ROOT}/lib)
else()
find_package(Boost)
if(NOT Boost_FOUND)
message(FATAL_ERROR "Boost not found!")
endif()
endif()
message(STATUS "boost include directory: ${Boost_INCLUDE_DIRS}")
message(STATUS "boost library directory: ${Boost_LIBRARY_DIRS}")
#---------------------------
# Check pthread lib directory
#---------------------------
find_library(PTHREAD_LIB pthread)
if(PTHREAD_LIB)
message(STATUS "pthread library: ${PTHREAD_LIB}")
else()
message(FATAL_ERROR "Could not find library: pthread!")
endif()
#---------------------------
# Check sasl lib directory
#---------------------------
if(DEFINED ENV{SASL_LIBRARYDIR})
set(SASL_LIBRARYDIR $ENV{SASL_LIBRARYDIR})
link_directories(${SASL_LIBRARYDIR})
message(STATUS "sasl2 library directory: ${SASL_LIBRARYDIR}")
endif()
if(DEFINED ENV{SASL_LIBRARY})
set(SASL_LIBRARY $ENV{SASL_LIBRARY})
message(STATUS "sasl2 library: ${SASL_LIBRARY}")
endif()
# Directories
include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
link_directories(${Boost_LIBRARY_DIRS})
# Target: kafka-topics
set(KafkaTopics kafka-topics)
add_executable("${KafkaTopics}" "KafkaTopics.cc")
target_link_libraries("${KafkaTopics}" modern-cpp-kafka-api)
target_link_libraries("${KafkaTopics}" "pthread;boost_program_options;${SASL_LIBRARY}")
install(TARGETS "${KafkaTopics}" DESTINATION tools)
# Target: kafka-console-consumer
set(KafkaConsoleConsumer kafka-console-consumer)
add_executable("${KafkaConsoleConsumer}" "KafkaConsoleConsumer.cc")
target_link_libraries("${KafkaConsoleConsumer}" modern-cpp-kafka-api)
target_link_libraries("${KafkaConsoleConsumer}" "pthread;boost_program_options;${SASL_LIBRARY}")
install(TARGETS "${KafkaConsoleConsumer}" DESTINATION tools)
# Target: kafka-console-producer
set(KafkaConsoleProducer kafka-console-producer)
add_executable("${KafkaConsoleProducer}" "KafkaConsoleProducer.cc")
target_link_libraries("${KafkaConsoleProducer}" modern-cpp-kafka-api)
target_link_libraries("${KafkaConsoleProducer}" "pthread;boost_program_options;${SASL_LIBRARY}")
install(TARGETS "${KafkaConsoleProducer}" DESTINATION tools)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。