mirror of https://github.com/F-Stack/f-stack.git
21 lines
412 B
Meson
21 lines
412 B
Meson
|
# 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']
|