drivers: change indentation in build files
[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 is_windows
6     build = false
7     reason = 'not supported on Windows'
8     subdir_done()
9 endif
10
11 if not dpdk_conf.get('RTE_ARCH_64')
12     build = false
13     reason = 'only supported on 64-bit'
14     subdir_done()
15 endif
16
17 sources= files(
18         'otx2_common.c',
19         'otx2_dev.c',
20         'otx2_irq.c',
21         'otx2_mbox.c',
22         'otx2_sec_idev.c',
23 )
24
25 deps = ['eal', 'pci', 'ethdev', 'kvargs']
26 includes += include_directories(
27         '../../common/octeontx2',
28         '../../mempool/octeontx2',
29         '../../bus/pci',
30 )