net/hns3: list supported ptypes for advanced Rx descriptor
[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_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
23 if cc.has_argument('-Wno-format-nonliteral')
24         cflags += '-Wno-format-nonliteral'
25 endif