f-stack/dpdk/drivers/mempool/octeontx2/meson.build

23 lines
475 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.
#
2021-02-05 08:48:47 +00:00
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
endif
if not dpdk_conf.get('RTE_ARCH_64')
build = false
reason = 'only supported on 64-bit'
subdir_done()
endif
2020-06-18 16:55:50 +00:00
sources = files('otx2_mempool_ops.c',
'otx2_mempool.c',
'otx2_mempool_irq.c',
'otx2_mempool_debug.c'
)
deps += ['eal', 'mbuf', 'kvargs', 'bus_pci', 'common_octeontx2', 'mempool']