From 3931f83205f153f2bc7fc36d1a894cdc3f14b4db Mon Sep 17 00:00:00 2001 From: lichao <lichao@aiotlink.com> Date: 星期三, 21 四月 2021 16:52:51 +0800 Subject: [PATCH] change node socket to vector; try lock free queue. --- src/CMakeLists.txt | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ac5f05f..b17a2f5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,8 +1,8 @@ file(GLOB sources "./*.cpp") -set(Target bhshm) +set(Target bhome_shmq) add_library(${Target} ${sources}) -target_link_libraries(${Target} pthread rt) +target_link_libraries(${Target} bhome_msg pthread rt) -- Gitblit v1.8.0