]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/dpdk/lib/librte_port/meson.build
import 15.2.0 Octopus source
[ceph.git] / ceph / src / spdk / dpdk / lib / librte_port / meson.build
CommitLineData
11fdf7f2
TL
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2017 Intel Corporation
3
4version = 3
5sources = 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',
9f95a23c
TL
12 'rte_port_source_sink.c',
13 'rte_port_sym_crypto.c')
11fdf7f2
TL
14headers = files(
15 'rte_port_ethdev.h',
16 'rte_port_fd.h',
17 'rte_port_frag.h',
18 'rte_port_ras.h',
19 'rte_port.h',
20 'rte_port_ring.h',
21 'rte_port_sched.h',
9f95a23c
TL
22 'rte_port_source_sink.h',
23 'rte_port_sym_crypto.h')
24deps += ['ethdev', 'sched', 'ip_frag', 'cryptodev']
11fdf7f2
TL
25
26if dpdk_conf.has('RTE_LIBRTE_KNI')
27 sources += files('rte_port_kni.c')
28 headers += files('rte_port_kni.h')
29 deps += 'kni'
30endif