doc: add runtime option examples to hns3 guide
[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_wm.c',
7         'rte_table_acl.c',
8         'rte_table_array.c',
9         'rte_table_hash_cuckoo.c',
10         'rte_table_hash_ext.c',
11         'rte_table_hash_key8.c',
12         'rte_table_hash_key16.c',
13         'rte_table_hash_key32.c',
14         'rte_table_hash_lru.c',
15         'rte_table_lpm.c',
16         'rte_table_lpm_ipv6.c',
17         'rte_table_stub.c',
18 )
19 headers = files(
20         'rte_lru.h',
21         'rte_swx_table.h',
22         'rte_swx_table_em.h',
23         'rte_swx_table_wm.h',
24         'rte_table.h',
25         'rte_table_acl.h',
26         'rte_table_array.h',
27         'rte_table_hash.h',
28         'rte_table_hash_cuckoo.h',
29         'rte_table_hash_func.h',
30         'rte_table_lpm.h',
31         'rte_table_lpm_ipv6.h',
32         'rte_table_stub.h',
33 )
34 deps += ['mbuf', 'port', 'lpm', 'hash', 'acl']
35
36 indirect_headers += files(
37         'rte_lru_arm64.h',
38         'rte_lru_x86.h',
39         'rte_table_hash_func_arm64.h',
40 )