xref: /dpdk/drivers/net/dpaa2/meson.build (revision 68a03efeed657e6e05f281479b33b51102797e15)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright 2018-2021 NXP
3
4if not is_linux
5	build = false
6	reason = 'only supported on Linux'
7endif
8
9deps += ['mempool_dpaa2']
10sources = files('base/dpaa2_hw_dpni.c',
11		'dpaa2_tm.c',
12		'dpaa2_mux.c',
13		'dpaa2_ethdev.c',
14		'dpaa2_flow.c',
15		'dpaa2_rxtx.c',
16		'dpaa2_sparser.c',
17		'dpaa2_ptp.c',
18		'mc/dprtc.c',
19		'mc/dpkg.c',
20		'mc/dpdmux.c',
21		'mc/dpni.c')
22
23includes += include_directories('base', 'mc')
24
25headers = files('rte_pmd_dpaa2.h')
26