2 Star 1 Fork 1

mirrors_mariadb-corporation/mariadb-columnstore-data-adapters

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
Findkafkapp.cmake 965 Bytes
Copy Edit Raw Blame History
# Standard FIND_PACKAGE module for rdkafka++, sets the following variables:
# - RDKAFKAPP_FOUND
# - RDKAFKAPP_INCLUDE_DIRS (only if RDKAFKAPP_FOUND)
# - RDKAFKAPP_LIBRARIES (only if RDKAFKAPP_FOUND)
# Try to find the header
FIND_PATH(RDKAFKAPP_INCLUDE_DIR NAMES rdkafkacpp.h PATH_SUFFIXES librdkafka)
# Try to find the library
FIND_LIBRARY(RDKAFKAPP_LIBRARY NAMES rdkafka++)
# Handle the QUIETLY/REQUIRED arguments, set RDKAFKAPP_FOUND if all variables are
# found
INCLUDE(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(RDKAFKAPP
REQUIRED_VARS
RDKAFKAPP_LIBRARY
RDKAFKAPP_INCLUDE_DIR)
# Hide internal variables
MARK_AS_ADVANCED(RDKAFKAPP_INCLUDE_DIR RDKAFKAPP_LIBRARY)
# Set standard variables
IF(RDKAFKAPP_FOUND)
SET(RDKAFKAPP_INCLUDE_DIRS "${RDKAFKAPP_INCLUDE_DIR}")
SET(RDKAFKAPP_LIBRARIES "${RDKAFKAPP_LIBRARY}")
ENDIF()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_mariadb-corporation/mariadb-columnstore-data-adapters.git
git@gitee.com:mirrors_mariadb-corporation/mariadb-columnstore-data-adapters.git
mirrors_mariadb-corporation
mariadb-columnstore-data-adapters
mariadb-columnstore-data-adapters
master

Search