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

21 lines
412 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',
)
headers = files('rte_graph.h', 'rte_graph_worker.h')
deps += ['eal']