fb4ac04e9b
Introduce common library for IDPF (Infrastructure Data Path Function) PMD. Add base code and OS specific implementation first. Signed-off-by: Beilei Xing <beilei.xing@intel.com> Signed-off-by: Xiao Wang <xiao.w.wang@intel.com> Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
15 lines
362 B
Meson
15 lines
362 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2022 Intel Corporation
|
|
|
|
sources = files(
|
|
'idpf_common.c',
|
|
'idpf_controlq.c',
|
|
'idpf_controlq_setup.c',
|
|
)
|
|
|
|
cflags += ['-Wno-unused-value']
|
|
cflags += ['-Wno-unused-variable']
|
|
cflags += ['-Wno-unused-parameter']
|
|
cflags += ['-Wno-implicit-fallthrough']
|
|
cflags += ['-Wno-strict-aliasing']
|