File: meson.build

package info (click to toggle)
dpdk 25.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 127,892 kB
  • sloc: ansic: 2,358,479; python: 16,426; sh: 4,474; makefile: 1,713; awk: 70
file content (30 lines) | stat: -rw-r--r-- 798 bytes parent folder | download
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
29
30
# 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',
        'graph_feature_arc.c',
)
headers = files('rte_graph.h', 'rte_graph_worker.h')
headers += files('rte_graph_feature_arc.h', 'rte_graph_feature_arc_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', 'rcu']