numam-dpdk/drivers/net/softnic/meson.build
Cristian Dumitrescu d5854eb4a9 net/softnic: remove unused text parsing functions
Remove the text parsing functions that are not used.

Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
Signed-off-by: Yogesh Jangra <yogesh.jangra@intel.com>
2022-09-21 12:24:20 +02:00

19 lines
476 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
if not is_linux
build = false
reason = 'only supported on Linux'
endif
headers = files('rte_eth_softnic.h')
sources = files(
'conn.c',
'rte_eth_softnic.c',
'rte_eth_softnic_cli.c',
'rte_eth_softnic_mempool.c',
'rte_eth_softnic_pipeline.c',
'rte_eth_softnic_swq.c',
'rte_eth_softnic_thread.c',
)
deps += ['pipeline', 'port', 'table']