From: Bruce Richardson Date: Fri, 8 Jun 2018 21:20:48 +0000 (+0100) Subject: net/vhost: add to meson build X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=5936aa3a39b9be317622af808834ad85d26e86f6;p=dpdk.git net/vhost: add to meson build Signed-off-by: Bruce Richardson Reviewed-by: Ferruh Yigit --- diff --git a/drivers/net/meson.build b/drivers/net/meson.build index 5f02852298..d19b195f8b 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -24,7 +24,9 @@ drivers = ['af_packet', 'sfc', 'softnic', 'szedata2', - 'thunderx', 'virtio'] + 'thunderx', + 'vhost', + 'virtio'] std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc std_deps += ['bus_pci'] # very many PMDs depend on PCI, so make std std_deps += ['bus_vdev'] # same with vdev bus diff --git a/drivers/net/vhost/meson.build b/drivers/net/vhost/meson.build new file mode 100644 index 0000000000..a8f77e1abf --- /dev/null +++ b/drivers/net/vhost/meson.build @@ -0,0 +1,7 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +version = 2 +sources = files('rte_eth_vhost.c') +install_headers('rte_eth_vhost.h') +deps += 'vhost'