1 Star 0 Fork 0

明心/thread-pool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CMakeLists.txt 407 Bytes
一键复制 编辑 原始数据 按行查看 历史
Minjie 提交于 2020-01-15 23:16 . make example compile
# CMake entry point
cmake_minimum_required (VERSION 3.5)
project (thread-pool)
## Add headers files
include_directories (
include/
)
set(HEADERS include/SafeQueue.h include/ThreadPool.h)
set(SOURCES example/main.cpp)
SET(CMAKE_CXX_FLAGS -pthread)
add_compile_options(
-std=c++11
# -D_DEBUG
# -g
)
# main.cpp
add_executable(main ${HEADERS} ${SOURCES})
target_link_libraries(main)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/80779898/thread-pool.git
git@gitee.com:80779898/thread-pool.git
80779898
thread-pool
thread-pool
master

搜索帮助