File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
mooncake-transfer-engine/src Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ jobs:
362362 clang-format --version
363363 clang-format-20 --version
364364 # skip cachelib_memory_allocator
365- find . -type f \( -name "*.h" -o -name "*.cpp" \) | grep -v cachelib_memory_allocator | xargs clang-format-20 -style=file -i
365+ find . -type f \( -name "*.h" -o -name "*.cpp" \) | grep -v "extern/" | grep -v " cachelib_memory_allocator" | xargs clang-format-20 -style=file -i
366366 if ! git diff --exit-code; then
367367 echo "Please follow the .clang-format code style, try clang-format -i FILENAME"
368368 exit 1
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ endif()
1919
2020SET (CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE )
2121
22- add_library (transfer_engine ${ENGINE_SOURCES} $<TARGET_OBJECTS:transport> $<TARGET_OBJECTS:rdma_transport> $<TARGET_OBJECTS:coro_rpc_connector> )
22+ add_library (transfer_engine ${ENGINE_SOURCES} $<TARGET_OBJECTS:transport>)
2323if (BUILD_SHARED_LIBS )
2424 install (TARGETS transfer_engine DESTINATION lib)
2525endif ()
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ find_package(Python3 COMPONENTS Interpreter Development REQUIRED)
66add_subdirectory (rdma_transport)
77add_subdirectory (coro_rpc_connector)
88
9- add_library (transport OBJECT ${XPORT_SOURCES} )
9+ add_library (transport OBJECT ${XPORT_SOURCES} $<TARGET_OBJECTS:rdma_transport> $<TARGET_OBJECTS:coro_rpc_connector> )
1010target_link_libraries (transport PRIVATE JsonCpp::JsonCpp yalantinglibs::yalantinglibs glog::glog pthread ${Python3_LIBRARIES} )
1111target_include_directories (transport PRIVATE ${Python3_INCLUDE_DIRS} )
1212
Original file line number Diff line number Diff line change 11file (GLOB CORO_RPC_SOURCES "*.cpp" )
22
3+ # Find Python for pybind11 support
4+ find_package (Python3 COMPONENTS Interpreter Development REQUIRED)
5+
36add_library (coro_rpc_connector OBJECT ${CORO_RPC_SOURCES} )
47add_library (yalantinglibs STATIC IMPORTED )
58set_target_properties (yalantinglibs PROPERTIES
You can’t perform that action at this time.
0 commit comments