git.droids-corp.org
/
dpdk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
drivers: change indentation in build files
[dpdk.git]
/
drivers
/
net
/
dpaa
/
meson.build
1
# SPDX-License-Identifier: BSD-3-Clause
2
# Copyright 2018-2020 NXP
3
4
if not is_linux
5
build = false
6
reason = 'only supported on Linux'
7
endif
8
deps += ['mempool_dpaa']
9
10
sources = files(
11
'dpaa_ethdev.c',
12
'fmlib/fm_lib.c',
13
'fmlib/fm_vsp.c',
14
'dpaa_flow.c',
15
'dpaa_rxtx.c',
16
'dpaa_fmc.c',
17
)
18
19
if cc.has_argument('-Wno-pointer-arith')
20
cflags += '-Wno-pointer-arith'
21
endif
22
23
headers = files('rte_pmd_dpaa.h')