numam-dpdk/drivers/net/ice/meson.build
Wenzhuo Lu c68a52b8b3 net/ice: support vector SSE in Rx
Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
2019-03-29 17:25:31 +01:00

18 lines
294 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
subdir('base')
objs = [base_objs]
sources = files(
'ice_ethdev.c',
'ice_rxtx.c'
)
deps += ['hash']
includes += include_directories('base')
if arch_subdir == 'x86'
sources += files('ice_rxtx_vec_sse.c')
endif