X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fnetvsc%2Fmeson.build;h=f74b941f65d9a31896ac39b53371dfa0e036a631;hb=fa06906a48ee9d31a22f58a05f72c7bd4b737459;hp=c190124db067c8174f7da5777fdab576f7afd8ef;hpb=b9d60b5434e9df46f53fc1e3aa4b065f261adb83;p=dpdk.git diff --git a/drivers/net/netvsc/meson.build b/drivers/net/netvsc/meson.build index c190124db0..f74b941f65 100644 --- a/drivers/net/netvsc/meson.build +++ b/drivers/net/netvsc/meson.build @@ -2,13 +2,19 @@ # Copyright(c) 2018 Microsoft Corporation if is_windows - build = false - reason = 'not supported on Windows' - subdir_done() + build = false + reason = 'not supported on Windows' + subdir_done() endif build = dpdk_conf.has('RTE_BUS_VMBUS') reason = 'missing dependency, DPDK VMBus driver' -sources = files('hn_ethdev.c', 'hn_rxtx.c', 'hn_rndis.c', 'hn_nvs.c', 'hn_vf.c') +sources = files( + 'hn_ethdev.c', + 'hn_nvs.c', + 'hn_rndis.c', + 'hn_rxtx.c', + 'hn_vf.c', +) deps += ['bus_vmbus' ]