]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/lib/librte_port/meson.build
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / spdk / dpdk / lib / librte_port / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 version = 3
5 sources = files(
6 'rte_port_ethdev.c',
7 'rte_port_fd.c',
8 'rte_port_frag.c',
9 'rte_port_ras.c',
10 'rte_port_ring.c',
11 'rte_port_sched.c',
12 'rte_port_source_sink.c')
13 headers = files(
14 'rte_port_ethdev.h',
15 'rte_port_fd.h',
16 'rte_port_frag.h',
17 'rte_port_ras.h',
18 'rte_port.h',
19 'rte_port_ring.h',
20 'rte_port_sched.h',
21 'rte_port_source_sink.h')
22 deps += ['ethdev', 'sched', 'ip_frag']
23
24 if dpdk_conf.has('RTE_LIBRTE_KNI')
25 sources += files('rte_port_kni.c')
26 headers += files('rte_port_kni.h')
27 deps += 'kni'
28 endif