]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/lib/librte_table/meson.build
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / spdk / dpdk / lib / librte_table / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 version = 3
5 sources = files('rte_table_acl.c',
6 'rte_table_lpm.c',
7 'rte_table_lpm_ipv6.c',
8 'rte_table_hash_cuckoo.c',
9 'rte_table_hash_key8.c',
10 'rte_table_hash_key16.c',
11 'rte_table_hash_key32.c',
12 'rte_table_hash_ext.c',
13 'rte_table_hash_lru.c',
14 'rte_table_array.c',
15 'rte_table_stub.c')
16 headers = files('rte_table.h',
17 'rte_table_acl.h',
18 'rte_table_lpm.h',
19 'rte_table_lpm_ipv6.h',
20 'rte_table_hash.h',
21 'rte_table_hash_cuckoo.h',
22 'rte_lru.h',
23 'rte_table_array.h',
24 'rte_table_stub.h')
25 deps += ['mbuf', 'port', 'lpm', 'hash', 'acl']
26
27 if arch_subdir == 'x86'
28 headers += files('rte_lru_x86.h')
29 endif