From 77b410351c97326b3deb240ab2ca8a0aa9c6c3ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Wed, 8 Nov 2023 18:14:26 +0900 Subject: [PATCH] fix cmake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e8a904d..28ec094 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ add_executable(cfgwriter cfgwriter.c) find_library(SPB_STATIC_LIB libspb.a) -target_link_libraries(simple-kanban ${SPB_STATIC_LIB}) +target_link_libraries(simple-kanban pthread ${SPB_STATIC_LIB}) target_link_libraries(simple-kanban-client pthread) target_link_libraries(cfgwriter ${SPB_STATIC_LIB})