This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar/infra/packet_manager/CMakeLists.txt
2024-11-07 19:09:26 +08:00

17 lines
694 B
CMake

add_library(packet_manager
packet_manager.c
packet_pool.c
packet_parser.c
packet_builder.c
packet_dabloom.c
packet_dump.c
packet_utils.c
checksum.c)
target_include_directories(packet_manager PUBLIC ${CMAKE_CURRENT_LIST_DIR})
target_include_directories(packet_manager PUBLIC ${CMAKE_SOURCE_DIR}/deps/uthash)
target_include_directories(packet_manager PUBLIC ${CMAKE_SOURCE_DIR}/deps/logger)
target_include_directories(packet_manager PUBLIC ${CMAKE_SOURCE_DIR}/include)
target_include_directories(packet_manager PUBLIC ${CMAKE_SOURCE_DIR}/infra)
target_link_libraries(packet_manager tuple logger dablooms mq exdata module_manager fieldstat4)
add_subdirectory(test)