f-stack/dpdk/lib/lpm/meson.build

22 lines
567 B
Meson
Raw Normal View History

2019-06-25 11:12:58 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
2022-09-06 04:00:10 +00:00
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
endif
2019-06-25 11:12:58 +00:00
sources = files('rte_lpm.c', 'rte_lpm6.c')
headers = files('rte_lpm.h', 'rte_lpm6.h')
# since header files have different names, we can install all vector headers
# without worrying about which architecture we actually need
2022-09-06 04:00:10 +00:00
indirect_headers += files(
'rte_lpm_altivec.h',
'rte_lpm_neon.h',
'rte_lpm_sse.h',
'rte_lpm_sve.h',
)
2019-06-25 11:12:58 +00:00
deps += ['hash']
2021-02-05 08:48:47 +00:00
deps += ['rcu']