This is an automated email from the ASF dual-hosted git repository.
cmcfarlen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 4dab74c3e1 tscore depends on tscpputil (#10774)
4dab74c3e1 is described below
commit 4dab74c3e178b6cb5cd1b9dbdd8e85d2507daf25
Author: Chris McFarlen <[email protected]>
AuthorDate: Tue Nov 14 10:52:12 2023 -0600
tscore depends on tscpputil (#10774)
* tscore depends on tscpputil
* cmake-format
---------
Co-authored-by: Chris McFarlen <[email protected]>
---
src/tscore/CMakeLists.txt | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/src/tscore/CMakeLists.txt b/src/tscore/CMakeLists.txt
index 8539181386..2096ae7d1b 100644
--- a/src/tscore/CMakeLists.txt
+++ b/src/tscore/CMakeLists.txt
@@ -110,7 +110,16 @@ else()
target_sources(tscore PRIVATE HKDF_openssl.cc)
endif()
-target_link_libraries(tscore PUBLIC OpenSSL::Crypto PCRE::PCRE libswoc
yaml-cpp::yaml-cpp resolv::resolv ts::tsapicore)
+target_link_libraries(
+ tscore
+ PUBLIC OpenSSL::Crypto
+ PCRE::PCRE
+ libswoc
+ yaml-cpp::yaml-cpp
+ resolv::resolv
+ ts::tsapicore
+ ts::tscpputil
+)
if(TS_USE_POSIX_CAP)
target_link_libraries(tscore PUBLIC cap::cap)