lib: remove librte_ prefix from directory names
[dpdk.git] / lib / lpm / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 sources = files('rte_lpm.c', 'rte_lpm6.c')
5 headers = files('rte_lpm.h', 'rte_lpm6.h')
6 # since header files have different names, we can install all vector headers
7 # without worrying about which architecture we actually need
8 indirect_headers += files(
9         'rte_lpm_altivec.h',
10         'rte_lpm_neon.h',
11         'rte_lpm_sse.h',
12         'rte_lpm_sve.h',
13 )
14 deps += ['hash']
15 deps += ['rcu']