blob: 3b0193f79c37254c74f31ed3b475b2a22d96e87b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
include_directories(${CMAKE_SOURCE_DIR}/include)
add_executable(mrtest-l2fwd l2fwd.c)
target_link_libraries(mrtest-l2fwd marsio pthread)
add_executable(mrtest-fb feedback.c)
target_link_libraries(mrtest-fb marsio pthread)
add_executable(mrtest-rxonly rxonly.c)
target_link_libraries(mrtest-rxonly marsio pthread)
add_executable(mrtest-pag-rx pag/rx_sample.c)
target_link_libraries(mrtest-pag-rx pag)
add_executable(mrtest-vxlan-encap vxlan-encap.c)
target_link_libraries(mrtest-vxlan-encap marsio pthread)
add_executable(mrtest-vxlan-link-id-inject vxlan-virtual-link-id.cc)
target_link_libraries(mrtest-vxlan-link-id-inject marsio pthread pcap)
#add_executable(mrtest-smartoffload smartoffload.cc)
#target_link_libraries(mrtest-smartoffload marsio pthread pcap)
add_executable(mrtest-l2fwd-nf l2fwd-nf.c)
target_link_libraries(mrtest-l2fwd-nf marsio pthread pcap libdpdk)
|