net/mlx5: fix flow age event triggering
[dpdk.git] / drivers / mempool / octeontx2 / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(C) 2019 Marvell International Ltd.
3 #
4
5 if is_windows
6     build = false
7     reason = 'not supported on Windows'
8     subdir_done()
9 endif
10 if not dpdk_conf.get('RTE_ARCH_64')
11     build = false
12     reason = 'only supported on 64-bit'
13     subdir_done()
14 endif
15
16 sources = files(
17         'otx2_mempool.c',
18         'otx2_mempool_debug.c',
19         'otx2_mempool_irq.c',
20         'otx2_mempool_ops.c',
21 )
22
23 deps += ['eal', 'mbuf', 'kvargs', 'bus_pci', 'common_octeontx2', 'mempool']