xref: /dpdk/lib/graph/meson.build (revision daa02b5cddbb8e11b31d41e2bf7bb1ae64dcae2f)
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)
18headers = files('rte_graph.h', 'rte_graph_worker.h')
19
20deps += ['eal']
21