4bec2d0b55
Add support for queue operations: - setup rx/tx queue - release rx/tx queue - start rx/tx queues - stop rx/tx queues Signed-off-by: Xiaoyun Li <xiaoyun.li@intel.com> Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
17 lines
328 B
Meson
17 lines
328 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(C) 2022 Intel Corporation
|
|
|
|
if is_windows
|
|
build = false
|
|
reason = 'not supported on Windows'
|
|
subdir_done()
|
|
endif
|
|
|
|
sources = files(
|
|
'base/gve_adminq.c',
|
|
'gve_rx.c',
|
|
'gve_tx.c',
|
|
'gve_ethdev.c',
|
|
)
|
|
includes += include_directories('base')
|