hash: add new Toeplitz hash implementation
[dpdk.git] / lib / hash / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 headers = files(
5         'rte_fbk_hash.h',
6         'rte_hash_crc.h',
7         'rte_hash.h',
8         'rte_jhash.h',
9         'rte_thash.h',
10         'rte_thash_gfni.h',
11 )
12 indirect_headers += files(
13         'rte_crc_arm64.h',
14         'rte_thash_x86_gfni.h',
15 )
16
17 sources = files('rte_cuckoo_hash.c', 'rte_fbk_hash.c', 'rte_thash.c')
18 deps += ['net']
19 deps += ['ring']
20 deps += ['rcu']