xref: /dpdk/drivers/net/softnic/meson.build (revision d5854eb4a9ad5e446e3c1a5cc8f6bc058a955872)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2018 Intel Corporation
3
4if not is_linux
5    build = false
6    reason = 'only supported on Linux'
7endif
8headers = files('rte_eth_softnic.h')
9sources = files(
10        'conn.c',
11        'rte_eth_softnic.c',
12        'rte_eth_softnic_cli.c',
13        'rte_eth_softnic_mempool.c',
14        'rte_eth_softnic_pipeline.c',
15        'rte_eth_softnic_swq.c',
16        'rte_eth_softnic_thread.c',
17)
18deps += ['pipeline', 'port', 'table']
19