pipeline: add drop port for each pipeline
[dpdk.git] / lib / lpm / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 if is_windows
5     build = false
6     reason = 'not supported on Windows'
7     subdir_done()
8 endif
9
10 sources = files('rte_lpm.c', 'rte_lpm6.c')
11 headers = files('rte_lpm.h', 'rte_lpm6.h')
12 # since header files have different names, we can install all vector headers
13 # without worrying about which architecture we actually need
14 indirect_headers += files(
15         'rte_lpm_altivec.h',
16         'rte_lpm_neon.h',
17         'rte_lpm_sse.h',
18         'rte_lpm_sve.h',
19 )
20 deps += ['hash']
21 deps += ['rcu']