Add eviction filter

This commit is contained in:
luwenpeng
2024-01-11 16:46:33 +08:00
parent 76d5fb36bb
commit 02f8d40c1e
23 changed files with 666 additions and 44 deletions

View File

@@ -1,8 +1,7 @@
add_executable(stellar stellar.cpp)
target_include_directories(stellar PUBLIC ${CMAKE_SOURCE_DIR}/src/packet)
target_include_directories(stellar PUBLIC ${CMAKE_SOURCE_DIR}/src/session)
target_include_directories(stellar PUBLIC ${CMAKE_SOURCE_DIR}/src/dupkt)
target_link_libraries(stellar session_manager dupkt_filter pthread)
target_link_libraries(stellar session_manager)
target_link_libraries(stellar dupkt_filter)
target_link_libraries(stellar eviction_filter)
target_link_libraries(stellar pthread)
install(TARGETS stellar RUNTIME DESTINATION bin COMPONENT Program)