net/ice: refine debug build option
[dpdk.git] / drivers / common / octeontx2 / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(C) 2019 Marvell International Ltd.
3 #
4
5 if not dpdk_conf.get('RTE_ARCH_64')
6         build = false
7         reason = 'only supported on 64-bit'
8         subdir_done()
9 endif
10
11 sources= files('otx2_dev.c',
12                 'otx2_irq.c',
13                 'otx2_mbox.c',
14                 'otx2_common.c',
15                 'otx2_sec_idev.c',
16                )
17
18 deps = ['eal', 'pci', 'ethdev', 'kvargs']
19 includes += include_directories('../../common/octeontx2',
20                 '../../mempool/octeontx2', '../../bus/pci')