mirror of
https://github.com/fumiama/simple-kanban.git
synced 2026-06-08 18:10:24 +08:00
14 lines
489 B
CMake
14 lines
489 B
CMake
project(simple-kanban)
|
|
add_executable(simple-kanban server.c) # 生成可执行文件
|
|
add_executable(simple-kanban-client client.c) # 生成可执行文件
|
|
target_link_libraries( # 目标库
|
|
simple-kanban
|
|
|
|
# 目标库需要链接的库
|
|
pthread)
|
|
target_link_libraries( # 目标库
|
|
simple-kanban-client
|
|
|
|
# 目标库需要链接的库
|
|
pthread)
|