1 Star 0 Fork 0

mayun/AntServer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 428 Bytes
一键复制 编辑 原始数据 按行查看 历史
mayun 提交于 2024-07-08 13:16 . 修复 sendfile bug
cmake_minimum_required(VERSION 3.20)
# 编译
project(server)
set(CMAKE_CXX_STANDARD 11)
# 添加头文件搜索路径
include_directories(${PROJECT_SOURCE_DIR}/include)
# 搜索 src 目录下的所有 .cpp 文件
file(GLOB_RECURSE SRC_FILES ${PROJECT_SOURCE_DIR}/src/*.cpp)
# 使用找到的源文件创建可执行文件
add_executable(${PROJECT_NAME} main.cpp ${SRC_FILES})
target_link_libraries(${PROJECT_NAME} magic)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mayunmeiyouming/ant-server.git
[email protected]:mayunmeiyouming/ant-server.git
mayunmeiyouming
ant-server
AntServer
master

搜索帮助