2018-09-18 15:58:22 +01:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
|
|
|
|
|
2020-12-21 16:45:11 -08:00
|
|
|
if is_windows
|
|
|
|
build = false
|
|
|
|
reason = 'not supported on Windows'
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2018-09-18 15:58:22 +01:00
|
|
|
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
|