mirror of https://github.com/F-Stack/f-stack.git
14 lines
354 B
Meson
14 lines
354 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(C) 2021 Marvell International Ltd.
|
|
|
|
error_cflags = ['-Wno-uninitialized']
|
|
foreach flag: error_cflags
|
|
if cc.has_argument(flag)
|
|
cflags += flag
|
|
endif
|
|
endforeach
|
|
|
|
deps += ['bus_pci', 'common_cnxk', 'dmadev']
|
|
sources = files('cnxk_dmadev.c', 'cnxk_dmadev_fp.c')
|
|
require_iova_in_mbuf = false
|