f-stack/dpdk/drivers/crypto/nitrox/meson.build

19 lines
398 B
Meson
Raw Normal View History

2020-06-18 16:55:50 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(C) 2019 Marvell International Ltd.
if not is_linux
2022-09-06 04:00:10 +00:00
build = false
reason = 'only supported on Linux'
2020-06-18 16:55:50 +00:00
endif
deps += ['bus_pci']
sources = files(
2022-09-06 04:00:10 +00:00
'nitrox_device.c',
'nitrox_hal.c',
'nitrox_logs.c',
'nitrox_sym.c',
'nitrox_sym_capabilities.c',
'nitrox_sym_reqmgr.c',
'nitrox_qp.c',
)