2018-06-08 21:20:46 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
|
2019-04-09 10:55:36 +00:00
|
|
|
if not is_linux
|
2019-06-05 20:22:41 +00:00
|
|
|
build = false
|
|
|
|
reason = 'only supported on linux'
|
2018-10-04 14:10:01 +00:00
|
|
|
endif
|
2018-06-08 21:20:46 +00:00
|
|
|
install_headers('rte_eth_softnic.h')
|
|
|
|
sources = files('rte_eth_softnic_tm.c',
|
2018-07-06 17:20:55 +00:00
|
|
|
'rte_eth_softnic.c',
|
2018-07-06 17:20:57 +00:00
|
|
|
'rte_eth_softnic_mempool.c',
|
2018-07-06 17:20:56 +00:00
|
|
|
'rte_eth_softnic_swq.c',
|
2018-07-06 17:20:58 +00:00
|
|
|
'rte_eth_softnic_link.c',
|
2018-07-06 17:21:00 +00:00
|
|
|
'rte_eth_softnic_tap.c',
|
2018-07-06 17:21:02 +00:00
|
|
|
'rte_eth_softnic_action.c',
|
2018-07-06 17:21:03 +00:00
|
|
|
'rte_eth_softnic_pipeline.c',
|
2018-06-08 12:41:46 +00:00
|
|
|
'rte_eth_softnic_thread.c',
|
|
|
|
'rte_eth_softnic_cli.c',
|
2018-09-11 14:20:32 +00:00
|
|
|
'rte_eth_softnic_flow.c',
|
2018-09-26 13:08:45 +00:00
|
|
|
'rte_eth_softnic_meter.c',
|
2018-10-24 12:49:01 +00:00
|
|
|
'rte_eth_softnic_cryptodev.c',
|
2018-07-06 17:21:06 +00:00
|
|
|
'parser.c',
|
|
|
|
'conn.c')
|
2018-10-24 12:49:01 +00:00
|
|
|
deps += ['pipeline', 'port', 'table', 'sched', 'cryptodev']
|