xref: /f-stack/dpdk/drivers/net/thunderx/meson.build (revision d30ea906)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2017 Cavium, Inc
3
4subdir('base')
5objs = [base_objs]
6
7sources = files('nicvf_rxtx.c',
8		'nicvf_ethdev.c',
9		'nicvf_svf.c'
10)
11
12if cc.has_argument('-fno-prefetch-loop-arrays')
13	cflags += '-fno-prefetch-loop-arrays'
14endif
15
16if cc.has_argument('-Wno-maybe-uninitialized')
17	cflags += '-Wno-maybe-uninitialized'
18endif
19
20includes += include_directories('base')
21