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