xref: /dpdk/lib/graph/meson.build (revision 665b49c51639a10c553433bc2bcd85c7331c631e)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(C) 2020 Marvell International Ltd.
3
4if is_windows
5    build = false
6    reason = 'not supported on Windows'
7    subdir_done()
8endif
9
10sources = files(
11        'node.c',
12        'graph.c',
13        'graph_ops.c',
14        'graph_debug.c',
15        'graph_stats.c',
16        'graph_populate.c',
17        'graph_pcap.c',
18)
19headers = files('rte_graph.h', 'rte_graph_worker.h')
20
21deps += ['eal', 'pcapng']
22