2 Star 1 Fork 1

mirrors_mariadb-corporation/mariadb-columnstore-data-adapters

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
FindAvro.cmake 461 Bytes
一键复制 编辑 原始数据 按行查看 历史
# This CMake file locates the libavro.a static library and the avro.h header
#
# The following variables are set:
# AVRO_FOUND - If the Avro C library was found
# AVRO_LIBRARIES - Path to the static library
# AVRO_INCLUDE_DIR - Path to Avro headers
find_path(AVRO_INCLUDE_DIRS avro.h)
find_library(AVRO_LIBRARIES libavro.a)
if (AVRO_INCLUDE_DIRS AND AVRO_LIBRARIES)
message(STATUS "Found Avro C libraries: ${AVRO_LIBRARIES}")
set(AVRO_FOUND TRUE)
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

搜索帮助