f-stack/dpdk/lib/graph/meson.build

29 lines
682 B
Meson
Raw Normal View History

2022-09-06 04:00:10 +00:00
# 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',
2025-01-10 11:50:43 +00:00
'graph_pcap.c',
'rte_graph_worker.c',
'rte_graph_model_mcore_dispatch.c',
2022-09-06 04:00:10 +00:00
)
headers = files('rte_graph.h', 'rte_graph_worker.h')
2025-01-10 11:50:43 +00:00
indirect_headers += files(
'rte_graph_model_mcore_dispatch.h',
'rte_graph_model_rtc.h',
'rte_graph_worker_common.h',
)
2022-09-06 04:00:10 +00:00
2025-01-10 11:50:43 +00:00
deps += ['eal', 'pcapng', 'mempool', 'ring']