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

18 lines
438 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
2020-06-18 16:55:50 +00:00
sources = files('rte_distributor.c', 'rte_distributor_single.c')
2019-06-25 11:12:58 +00:00
if arch_subdir == 'x86'
2022-09-06 04:00:10 +00:00
sources += files('rte_distributor_match_sse.c')
2019-06-25 11:12:58 +00:00
else
2022-09-06 04:00:10 +00:00
sources += files('rte_distributor_match_generic.c')
2019-06-25 11:12:58 +00:00
endif
headers = files('rte_distributor.h')
deps += ['mbuf']