From 4ad4f24f18cf7d0af22ca885baebc6a3eb37e7d0 Mon Sep 17 00:00:00 2001 From: lichao <lichao@aiotlink.com> Date: 星期四, 20 五月 2021 10:08:40 +0800 Subject: [PATCH] rename socket.h/cpp to shm_socket.h/cpp. --- src/CMakeLists.txt | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ac5f05f..6e85736 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,8 +1,12 @@ -file(GLOB sources "./*.cpp") +file(GLOB sources "./*.cpp" "../log/*.cpp") -set(Target bhshm) +set(CMAKE_SHARED_LINKER_FLAGS ${CMAKE_SHARED_LINKER_FLAGS} "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/exported_symbols") +include_directories(../log) -add_library(${Target} ${sources}) +add_library(bhcommon STATIC ${sources}) +set(LogLibs "boost_log;boost_log_setup;boost_thread;boost_filesystem") +target_link_libraries(bhcommon bhome_msg ${LogLibs} pthread rt) -target_link_libraries(${Target} pthread rt) +add_library(bhome_shmq SHARED bh_api.cc) +target_link_libraries(bhome_shmq bhcommon) -- Gitblit v1.8.0