xref: /dpdk/drivers/net/dpaa2/meson.build (revision f023d059769fb7bf8cb4b9111f51d550ece7e07d)
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(
11        'base/dpaa2_hw_dpni.c',
12        'base/dpaa2_tlu_hash.c',
13        'dpaa2_tm.c',
14        'dpaa2_mux.c',
15        'dpaa2_ethdev.c',
16        'dpaa2_flow.c',
17        'dpaa2_recycle.c',
18        'dpaa2_rxtx.c',
19        'dpaa2_sparser.c',
20        'dpaa2_ptp.c',
21        'mc/dprtc.c',
22        'mc/dpkg.c',
23        'mc/dpdmux.c',
24        'mc/dpni.c',
25)
26
27includes += include_directories('base', 'mc')
28
29headers = files('rte_pmd_dpaa2.h')
30