xref: /dpdk/drivers/net/qede/meson.build (revision 68a03efeed657e6e05f281479b33b51102797e15)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
3
4if is_windows
5	build = false
6	reason = 'not supported on Windows'
7	subdir_done()
8endif
9
10subdir('base')
11objs = [base_objs]
12
13sources = files(
14	'qede_ethdev.c',
15	'qede_filter.c',
16	'qede_main.c',
17	'qede_rxtx.c',
18	'qede_debug.c',
19	'qede_regs.c',
20	'qede_sriov.c',
21)
22
23if cc.has_argument('-Wno-format-nonliteral')
24	cflags += '-Wno-format-nonliteral'
25endif
26