xref: /dpdk/drivers/net/pfe/meson.build (revision 4ad4b20a79052d9c8062b64eaf0170c16a333ff8)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright 2019 NXP
3
4if not is_linux
5    build = false
6    reason = 'only supported on Linux'
7endif
8deps += ['common_dpaax']
9
10sources = files(
11        'pfe_ethdev.c',
12        'pfe_hal.c',
13        'pfe_hif_lib.c',
14        'pfe_hif.c',
15)
16
17if cc.has_argument('-Wno-pointer-arith')
18    cflags += '-Wno-pointer-arith'
19endif
20
21includes += include_directories('base')
22