X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=drivers%2Fnet%2Fena%2Fmeson.build;h=cc912fcebaca98c15a1349c45c24f08bdc198aba;hb=ac2fd8a5ea4cd71841542bfecb47912f5289b5dc;hp=091ca6e3f8a77cb921a2b84e5b75b9d95b422928;hpb=952afd9adf0cf0241077599d46b1511ed8482d47;p=dpdk.git diff --git a/drivers/net/ena/meson.build b/drivers/net/ena/meson.build index 091ca6e3f8..cc912fceba 100644 --- a/drivers/net/ena/meson.build +++ b/drivers/net/ena/meson.build @@ -1,10 +1,17 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation -allow_experimental_apis = true -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']