X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fena%2Fmeson.build;h=cc912fcebaca98c15a1349c45c24f08bdc198aba;hb=ac2fd8a5ea4cd71841542bfecb47912f5289b5dc;hp=189903b901db3751fd7d3ffe1a7a8fdc4f8f3020;hpb=acec04c4b2f5c75d244319e1d0ca17ea7d4da72d;p=dpdk.git diff --git a/drivers/net/ena/meson.build b/drivers/net/ena/meson.build index 189903b901..cc912fceba 100644 --- a/drivers/net/ena/meson.build +++ b/drivers/net/ena/meson.build @@ -1,9 +1,17 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation -sources = files('ena_ethdev.c', - 'base/ena_com.c', - 'base/ena_eth_com.c') +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + +sources = files( + 'ena_ethdev.c', + 'base/ena_com.c', + 'base/ena_eth_com.c', +) deps += ['timer']