xref: /dpdk/lib/mbuf/meson.build (revision 76cef1af8bdaeaf67a5c4ca5df3f221df994dc46)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2017 Intel Corporation
3
4if is_ms_compiler
5    build = false
6    reason = 'not supported building with Visual Studio Toolset'
7    subdir_done()
8endif
9
10sources = files(
11        'rte_mbuf.c',
12        'rte_mbuf_ptype.c',
13        'rte_mbuf_pool_ops.c',
14        'rte_mbuf_dyn.c',
15)
16headers = files(
17        'rte_mbuf.h',
18        'rte_mbuf_core.h',
19        'rte_mbuf_ptype.h',
20        'rte_mbuf_pool_ops.h',
21        'rte_mbuf_dyn.h',
22)
23deps += ['mempool']
24