4ad4b20a79
Switch from using tabs to 4 spaces for meson.build indentation. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
19 lines
421 B
Meson
19 lines
421 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(C) 2021 Marvell.
|
|
#
|
|
|
|
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
|
|
build = false
|
|
reason = 'only supported on 64-bit Linux'
|
|
subdir_done()
|
|
endif
|
|
|
|
sources = files(
|
|
'cnxk_mempool.c',
|
|
'cnxk_mempool_ops.c',
|
|
'cn9k_mempool_ops.c',
|
|
'cn10k_mempool_ops.c',
|
|
)
|
|
|
|
deps += ['eal', 'mbuf', 'kvargs', 'bus_pci', 'common_cnxk', 'mempool']
|