blob: 271416f0818211a0f9e26c99261e76ad613fbda0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on linux'
endif
deps += ['mempool_dpaa']
sources = files('dpaa_ethdev.c',
'dpaa_rxtx.c')
if cc.has_argument('-Wno-pointer-arith')
cflags += '-Wno-pointer-arith'
endif
install_headers('rte_pmd_dpaa.h')
|