eal/memory: fix unused SIGBUS handler
[dpdk.git] / lib / table / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 sources = files(
5         'rte_swx_table_em.c',
6         'rte_swx_table_selector.c',
7         'rte_swx_table_wm.c',
8         'rte_table_acl.c',
9         'rte_table_array.c',
10         'rte_table_hash_cuckoo.c',
11         'rte_table_hash_ext.c',
12         'rte_table_hash_key8.c',
13         'rte_table_hash_key16.c',
14         'rte_table_hash_key32.c',
15         'rte_table_hash_lru.c',
16         'rte_table_lpm.c',
17         'rte_table_lpm_ipv6.c',
18         'rte_table_stub.c',
19 )
20 headers = files(
21         'rte_lru.h',
22         'rte_swx_table.h',
23         'rte_swx_table_em.h',
24         'rte_swx_table_selector.h',
25         'rte_swx_table_wm.h',
26         'rte_table.h',
27         'rte_table_acl.h',
28         'rte_table_array.h',
29         'rte_table_hash.h',
30         'rte_table_hash_cuckoo.h',
31         'rte_table_hash_func.h',
32         'rte_table_lpm.h',
33         'rte_table_lpm_ipv6.h',
34         'rte_table_stub.h',
35 )
36 deps += ['mbuf', 'port', 'lpm', 'hash', 'acl']
37
38 indirect_headers += files(
39         'rte_lru_arm64.h',
40         'rte_lru_x86.h',
41         'rte_table_hash_func_arm64.h',
42 )