xref: /dpdk/drivers/net/qede/meson.build (revision 4ad4b20a79052d9c8062b64eaf0170c16a333ff8)
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_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
23if cc.has_argument('-Wno-format-nonliteral')
24    cflags += '-Wno-format-nonliteral'
25endif
26