7d5cfaa750
Running "./devtools/check-meson.py --fix" on the DPDK repo fixes a number of issues with whitespace and formatting of files: * indentation of lists * missing trailing commas on final list element * multiple list entries per line when list is not all single-line Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
19 lines
398 B
Meson
19 lines
398 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(C) 2019 Marvell International Ltd.
|
|
|
|
if not is_linux
|
|
build = false
|
|
reason = 'only supported on Linux'
|
|
endif
|
|
|
|
deps += ['bus_pci']
|
|
sources = files(
|
|
'nitrox_device.c',
|
|
'nitrox_hal.c',
|
|
'nitrox_logs.c',
|
|
'nitrox_sym.c',
|
|
'nitrox_sym_capabilities.c',
|
|
'nitrox_sym_reqmgr.c',
|
|
'nitrox_qp.c',
|
|
)
|