extract ipv4 into its own static library

This commit is contained in:
Ian Gulliver
2026-05-01 13:23:10 -07:00
parent fceae27f10
commit f64cdcaacf
4 changed files with 13 additions and 1 deletions

11
ipv4/CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
add_library(ipv4 STATIC ipv4.cpp)
target_include_directories(ipv4 PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_options(ipv4 PRIVATE -Wall -Wextra -Wno-unused-parameter)
target_link_libraries(ipv4 PUBLIC
util
eth
debug_log
)