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