drivers: change indentation in build files
[dpdk.git] / drivers / bus / fslmc / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright 2018 NXP
3
4 if not is_linux
5     build = false
6     reason = 'only supported on Linux'
7 endif
8
9 deps += ['common_dpaax', 'eventdev', 'kvargs']
10 sources = files(
11         'fslmc_bus.c',
12         'fslmc_vfio.c',
13         'mc/dpbp.c',
14         'mc/dpci.c',
15         'mc/dpcon.c',
16         'mc/dpdmai.c',
17         'mc/dpio.c',
18         'mc/dpmng.c',
19         'mc/mc_sys.c',
20         'portal/dpaa2_hw_dpbp.c',
21         'portal/dpaa2_hw_dpci.c',
22         'portal/dpaa2_hw_dpio.c',
23         'qbman/qbman_portal.c',
24         'qbman/qbman_debug.c'
25 )
26
27 includes += include_directories('mc', 'qbman/include', 'portal')