aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/vdev_netvsc/meson.build
blob: d3ada878a762252282ab34a4d7d8f4eab7cf0b8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>

if host_machine.system() != 'linux'
        build = false
endif
sources = files('vdev_netvsc.c')

allow_experimental_apis = true

cflags_options = [
        '-Wall',
        '-Wextra',
        '-D_BSD_SOURCE',
        '-D_DEFAULT_SOURCE',
        '-D_XOPEN_SOURCE=600'
]
foreach option:cflags_options
        if cc.has_argument(option)
                cflags += option
        endif
endforeach