numam-dpdk/drivers/dma/hisilicon/meson.build
Chengwen Feng 4d0d4cf327 dma/hisilicon: introduce driver skeleton
Add the basic device probe and remove functions and initial
documentation for new hisilicon DMA drivers.

Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
2021-11-07 19:54:19 +01:00

20 lines
435 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2021 HiSilicon Limited
if not is_linux
build = false
reason = 'only supported on Linux'
subdir_done()
endif
if (arch_subdir != 'x86' and arch_subdir != 'arm') or (not dpdk_conf.get('RTE_ARCH_64'))
build = false
reason = 'only supported on x86_64 and aarch64'
subdir_done()
endif
deps += ['bus_pci', 'dmadev']
sources = files(
'hisi_dmadev.c',
)