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/ip_reassembly/CMakeLists.txt

7 lines
274 B
CMake
Raw Normal View History

add_library(ip_reassembly ip_reassembly.c)
2024-03-08 13:55:17 +08:00
target_include_directories(ip_reassembly PUBLIC ${CMAKE_CURRENT_LIST_DIR})
2024-08-16 11:23:32 +08:00
target_include_directories(ip_reassembly PUBLIC ${CMAKE_SOURCE_DIR}/deps/crc32)
target_link_libraries(ip_reassembly packet_manager)
2024-02-22 18:52:04 +08:00
add_subdirectory(test)