mirror of https://github.com/F-Stack/f-stack.git
19 lines
435 B
Meson
19 lines
435 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
|
|
|
|
allow_experimental_apis = true
|
|
sources += files(
|
|
'vmxnet3_ethdev.c',
|
|
'vmxnet3_rxtx.c',
|
|
)
|
|
|
|
error_cflags = [
|
|
'-Wno-unused-parameter', '-Wno-unused-value',
|
|
'-Wno-strict-aliasing', '-Wno-format-extra-args',
|
|
]
|
|
foreach flag: error_cflags
|
|
if cc.has_argument(flag)
|
|
cflags += flag
|
|
endif
|
|
endforeach
|