0586321abe121cc1410f6720c5df346ebd8440b7
[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('otx2_mempool_ops.c',
17                 'otx2_mempool.c',
18                 'otx2_mempool_irq.c',
19                 'otx2_mempool_debug.c'
20                 )
21
22 deps += ['eal', 'mbuf', 'kvargs', 'bus_pci', 'common_octeontx2', 'mempool']