summaryrefslogtreecommitdiff
path: root/lib/graph/meson.build
blob: 0cb15442ab750d8a767c5ad5edc5020e34149571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(C) 2020 Marvell International Ltd.

if is_windows
    build = false
    reason = 'not supported on Windows'
    subdir_done()
endif

sources = files(
        'node.c',
        'graph.c',
        'graph_ops.c',
        'graph_debug.c',
        'graph_stats.c',
        'graph_populate.c',
        'graph_pcap.c',
        'rte_graph_worker.c',
        'rte_graph_model_mcore_dispatch.c',
)
headers = files('rte_graph.h', 'rte_graph_worker.h')
indirect_headers += files(
        'rte_graph_model_mcore_dispatch.h',
        'rte_graph_model_rtc.h',
        'rte_graph_worker_common.h',
)

deps += ['eal', 'pcapng', 'mempool', 'ring']