test/mem: disable ASan when accessing unallocated memory
[dpdk.git] / lib / graph / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(C) 2020 Marvell International Ltd.
3
4 if is_windows
5     build = false
6     reason = 'not supported on Windows'
7     subdir_done()
8 endif
9
10 sources = files(
11         'node.c',
12         'graph.c',
13         'graph_ops.c',
14         'graph_debug.c',
15         'graph_stats.c',
16         'graph_populate.c',
17 )
18 headers = files('rte_graph.h', 'rte_graph_worker.h')
19
20 deps += ['eal']