xref: /f-stack/dpdk/drivers/net/dpaa2/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 += ['mempool_dpaa2']
10sources = files('base/dpaa2_hw_dpni.c',
11		'dpaa2_mux.c',
12		'dpaa2_ethdev.c',
13		'dpaa2_flow.c',
14		'dpaa2_rxtx.c',
15		'dpaa2_sparser.c',
16		'dpaa2_ptp.c',
17		'mc/dprtc.c',
18		'mc/dpkg.c',
19		'mc/dpdmux.c',
20		'mc/dpni.c')
21
22includes += include_directories('base', 'mc')
23
24headers = files('rte_pmd_dpaa2.h')
25