This is an automated email from the ASF dual-hosted git repository.
bneradt 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 12454600e1 Fix src/api/CMakeLists.txt formatting (#11002)
12454600e1 is described below
commit 12454600e1dc360b4c28def0b448de27c043df28
Author: Brian Neradt <[email protected]>
AuthorDate: Tue Jan 23 17:51:15 2024 -0600
Fix src/api/CMakeLists.txt formatting (#11002)
The #10918 PR was old and didn't have the recent cmake formatting
applied. This re-applies our cmake format script to master.
---
src/api/CMakeLists.txt | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/src/api/CMakeLists.txt b/src/api/CMakeLists.txt
index fc4e7e9fa8..0cbed24df7 100644
--- a/src/api/CMakeLists.txt
+++ b/src/api/CMakeLists.txt
@@ -20,12 +20,9 @@ add_library(tsapi SHARED InkAPI.cc InkIOCoreAPI.cc)
add_library(ts::tsapi ALIAS tsapi)
set(TSAPI_PUBLIC_HEADERS
- ${PROJECT_SOURCE_DIR}/include/ts/ts.h
- ${PROJECT_SOURCE_DIR}/include/ts/remap.h
- ${PROJECT_SOURCE_DIR}/include/ts/TsException.h
- ${PROJECT_SOURCE_DIR}/include/ts/parentselectdefs.h
- ${PROJECT_SOURCE_DIR}/include/ts/parentselectdefs.h
- ${PROJECT_BINARY_DIR}/include/ts/apidefs.h
+ ${PROJECT_SOURCE_DIR}/include/ts/ts.h
${PROJECT_SOURCE_DIR}/include/ts/remap.h
+ ${PROJECT_SOURCE_DIR}/include/ts/TsException.h
${PROJECT_SOURCE_DIR}/include/ts/parentselectdefs.h
+ ${PROJECT_SOURCE_DIR}/include/ts/parentselectdefs.h
${PROJECT_BINARY_DIR}/include/ts/apidefs.h
)
target_link_libraries(tsapi PRIVATE libswoc::libswoc yaml-cpp::yaml-cpp
PCRE::PCRE OpenSSL::SSL)