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