加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/Tencent/DCache
克隆/下载
CMakeLists.txt 640 Bytes
一键复制 编辑 原始数据 按行查看 历史
ruanshudong 提交于 2022-07-05 11:17 . Fix CMakeLists.txt for linux(iconv)
cmake_minimum_required(VERSION 2.8)
project(DCache)
option(TARS_MYSQL "option for mysql" ON)
option(TARS_SSL "option for ssl" OFF)
option(TARS_HTTP2 "option for http2" OFF)
set(TARS_TOOL_FLAG "--with-tars")
set(TARS_WEB_HOST "http://127.0.0.1:3000")
if(WIN32)
include (c:\\tars\\cpp\\makefile\\tars-tools.cmake)
else()
include (/usr/local/tars/cpp/makefile/tars-tools.cmake)
endif()
include_directories(/usr/local/tars/cpp/thirdparty/include)
link_directories(/usr/local/tars/cpp/thirdparty/lib)
link_libraries(pthread)
link_libraries(dl)
if(APPLE)
link_libraries(iconv)
endif()
add_subdirectory(src)
add_subdirectory(test)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化