From 0c4558da774a7357d25ed9284e5727fd6a786efa Mon Sep 17 00:00:00 2001 From: Chris McFarlen Date: Fri, 16 Jun 2023 13:51:28 -0500 Subject: [PATCH] add some missing libs for clang --- src/records/CMakeLists.txt | 2 +- src/wccp/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/records/CMakeLists.txt b/src/records/CMakeLists.txt index 3dd431afcb8..a32811e8d6d 100644 --- a/src/records/CMakeLists.txt +++ b/src/records/CMakeLists.txt @@ -38,5 +38,5 @@ target_include_directories(records_p PRIVATE ${CMAKE_SOURCE_DIR}/iocore/eventsystem ${CMAKE_SOURCE_DIR}/iocore/utils ) -target_link_libraries(records_p tscore libswoc) +target_link_libraries(records_p tscore libswoc yaml-cpp::yaml-cpp) install(TARGETS records_p) diff --git a/src/wccp/CMakeLists.txt b/src/wccp/CMakeLists.txt index e16bcd4f5c7..82a47f02e6a 100644 --- a/src/wccp/CMakeLists.txt +++ b/src/wccp/CMakeLists.txt @@ -20,6 +20,6 @@ add_library(wccp SHARED WccpConfig.cc WccpEndPoint.cc WccpMsg.cc WccpStatic.cc ) -target_link_libraries(wccp PRIVATE libswoc) +target_link_libraries(wccp PRIVATE libswoc tscore yaml-cpp::yaml-cpp) install(TARGETS wccp)