7d5cfaa750
Running "./devtools/check-meson.py --fix" on the DPDK repo fixes a number of issues with whitespace and formatting of files: * indentation of lists * missing trailing commas on final list element * multiple list entries per line when list is not all single-line Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
18 lines
378 B
Meson
18 lines
378 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
sources = files(
|
|
'rte_mbuf.c',
|
|
'rte_mbuf_ptype.c',
|
|
'rte_mbuf_pool_ops.c',
|
|
'rte_mbuf_dyn.c',
|
|
)
|
|
headers = files(
|
|
'rte_mbuf.h',
|
|
'rte_mbuf_core.h',
|
|
'rte_mbuf_ptype.h',
|
|
'rte_mbuf_pool_ops.h',
|
|
'rte_mbuf_dyn.h',
|
|
)
|
|
deps += ['mempool']
|