f-stack/dpdk/drivers/net/pfe/meson.build

20 lines
363 B
Meson
Raw Normal View History

2020-06-18 16:55:50 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2019 NXP
2021-02-05 08:48:47 +00:00
if not is_linux
2020-06-18 16:55:50 +00:00
build = false
2021-02-05 08:48:47 +00:00
reason = 'only supported on Linux'
2020-06-18 16:55:50 +00:00
endif
deps += ['common_dpaax']
sources = files('pfe_ethdev.c',
'pfe_hal.c',
'pfe_hif_lib.c',
'pfe_hif.c')
if cc.has_argument('-Wno-pointer-arith')
cflags += '-Wno-pointer-arith'
endif
includes += include_directories('base')