############################################################################### # packet ############################################################################### add_library(packet packet.cpp packet_helpers.cpp) target_include_directories(packet PUBLIC ${CMAKE_SOURCE_DIR}/src/packet) target_include_directories(packet PUBLIC ${CMAKE_SOURCE_DIR}/src/tuple) target_include_directories(packet PUBLIC ${CMAKE_SOURCE_DIR}/deps/uthash) target_link_libraries(packet tuple) add_subdirectory(test)