log: register with standardized names
[dpdk.git] / drivers / net / netvsc / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Microsoft Corporation
3
4 if is_windows
5     build = false
6     reason = 'not supported on Windows'
7     subdir_done()
8 endif
9
10 build = dpdk_conf.has('RTE_BUS_VMBUS')
11 reason = 'missing dependency, DPDK VMBus driver'
12 sources = files(
13         'hn_ethdev.c',
14         'hn_nvs.c',
15         'hn_rndis.c',
16         'hn_rxtx.c',
17         'hn_vf.c',
18 )
19
20 deps += ['bus_vmbus' ]