X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fvhost%2Fmeson.build;h=858b79fdf580b104a161bd8a885157a536c8c507;hb=a9e3a4a9e2dc583d827fbb4c7e427aa5af98281a;hp=9532a76050ff39745f424e3ed17f7160ce714453;hpb=530588f3cd50d5626cfa2b94e161b97e97d84ade;p=dpdk.git diff --git a/drivers/net/vhost/meson.build b/drivers/net/vhost/meson.build index 9532a76050..858b79fdf5 100644 --- a/drivers/net/vhost/meson.build +++ b/drivers/net/vhost/meson.build @@ -1,9 +1,14 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation -build = dpdk_conf.has('RTE_LIBRTE_VHOST') +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + +build = dpdk_conf.has('RTE_LIB_VHOST') reason = 'missing dependency, DPDK vhost library' -version = 2 sources = files('rte_eth_vhost.c') -install_headers('rte_eth_vhost.h') +headers = files('rte_eth_vhost.h') deps += 'vhost'