60229dcfc4
Initialize and configure PF module to support SRIOV. Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com>
23 lines
407 B
Meson
23 lines
407 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018-2021 Beijing WangXun Technology Co., Ltd.
|
|
|
|
if is_windows
|
|
build = false
|
|
reason = 'not supported on Windows'
|
|
subdir_done()
|
|
endif
|
|
|
|
subdir('base')
|
|
objs = [base_objs]
|
|
|
|
sources = files(
|
|
'ngbe_ethdev.c',
|
|
'ngbe_ptypes.c',
|
|
'ngbe_pf.c',
|
|
'ngbe_rxtx.c',
|
|
)
|
|
|
|
deps += ['hash']
|
|
|
|
includes += include_directories('base')
|