xref: /dpdk/lib/graph/meson.build (revision 1e2aed1ab3944d00f8fbf31cda5be20937cfa862)
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        'rte_graph_worker.c',
19        'rte_graph_model_mcore_dispatch.c',
20)
21headers = files('rte_graph.h', 'rte_graph_worker.h')
22indirect_headers += files(
23        'rte_graph_model_mcore_dispatch.h',
24        'rte_graph_model_rtc.h',
25        'rte_graph_worker_common.h',
26)
27
28deps += ['eal', 'pcapng', 'mempool', 'ring']
29