2 Star 1 Fork 1

mirrors_mariadb-corporation/mariadb-columnstore-data-adapters

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
FindLibUV.cmake 854 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Standard FIND_PACKAGE module for libuv, sets the following variables:
# - LIBUV_FOUND
# - LIBUV_INCLUDE_DIRS (only if LIBUV_FOUND)
# - LIBUV_LIBRARIES (only if LIBUV_FOUND)
# Try to find the header
FIND_PATH(LIBUV_INCLUDE_DIR NAMES uv.h)
# Try to find the library
FIND_LIBRARY(LIBUV_LIBRARY NAMES uv libuv)
# Handle the QUIETLY/REQUIRED arguments, set LIBUV_FOUND if all variables are
# found
INCLUDE(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LIBUV
REQUIRED_VARS
LIBUV_LIBRARY
LIBUV_INCLUDE_DIR)
# Hide internal variables
MARK_AS_ADVANCED(LIBUV_INCLUDE_DIR LIBUV_LIBRARY)
# Set standard variables
IF(LIBUV_FOUND)
SET(LIBUV_INCLUDE_DIRS "${LIBUV_INCLUDE_DIR}")
SET(LIBUV_LIBRARIES "${LIBUV_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

搜索帮助