test: add devargs test cases
[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 is_linux or not dpdk_conf.get('RTE_ARCH_64')
6     build = false
7     reason = 'only supported on 64-bit Linux'
8     subdir_done()
9 endif
10
11 sources= files(
12         'otx2_common.c',
13         'otx2_dev.c',
14         'otx2_irq.c',
15         'otx2_mbox.c',
16         'otx2_sec_idev.c',
17 )
18
19 deps = ['eal', 'pci', 'ethdev', 'kvargs']
20 includes += include_directories(
21         '../../common/octeontx2',
22         '../../mempool/octeontx2',
23         '../../bus/pci',
24 )