numam-dpdk/drivers/net/igc/meson.build
Alvin Zhang 746664d546 net/igc: support flow API
Below type of flows are supported:
ether-type filter, 2-tuple filter, SYN filter, RSS.
Update docs too.

Signed-off-by: Alvin Zhang <alvinx.zhang@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
2020-04-21 13:57:08 +02:00

16 lines
257 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2019-2020 Intel Corporation
subdir('base')
objs = [base_objs]
sources = files(
'igc_logs.c',
'igc_ethdev.c',
'igc_txrx.c',
'igc_filter.c',
'igc_flow.c'
)
includes += include_directories('base')