1 Star 2 Fork 0

海绵宝宝卖海绵/NetLoop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 956 Bytes
一键复制 编辑 原始数据 按行查看 历史
海绵宝宝卖海绵 提交于 2024-08-24 17:01 . 增加计时器Timer
project(ChatCinema)
cmake_minimum_required(VERSION 3.10)
set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -g)
include_directories(src/TcpServer
src/HttpServer
src
src/Services
src/utils
)
add_subdirectory(src)
add_executable(test_tcpserver test_tcpserver.cpp)
target_link_libraries(test_tcpserver tcp_server)
add_executable(test_httpserver test_httpserver.cpp)
target_link_libraries(test_httpserver tcp_server http_server)
add_executable(test_service test_service.cpp)
target_link_libraries(test_service
services
tcp_server
http_server
utils)
add_executable(test_timer test_timer.cpp)
target_link_libraries(test_timer
services
tcp_server
http_server
utils)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/llxGiteeSpace/net-loop.git
git@gitee.com:llxGiteeSpace/net-loop.git
llxGiteeSpace
net-loop
NetLoop
master

搜索帮助