From 3479586fe6364aa55098c2e570f73afe61f05433 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Fri, 8 Jun 2018 22:20:43 +0100 Subject: [PATCH] net/kni: add to meson build Since the kni library is an optional library, we need to add a check here to ensure that the kni wrapper PMD is only built when the main kni lib is being built. Signed-off-by: Bruce Richardson Reviewed-by: Ferruh Yigit --- drivers/net/kni/meson.build | 8 ++++++++ drivers/net/meson.build | 1 + 2 files changed, 9 insertions(+) create mode 100644 drivers/net/kni/meson.build diff --git a/drivers/net/kni/meson.build b/drivers/net/kni/meson.build new file mode 100644 index 0000000000..77468188bd --- /dev/null +++ b/drivers/net/kni/meson.build @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +# this driver can be built if-and-only-if KNI library is buildable +build = dpdk_conf.has('LIB_LIBRTE_KNI') +allow_experimental_apis = true +sources = files('rte_eth_kni.c') +deps += 'kni' diff --git a/drivers/net/meson.build b/drivers/net/meson.build index 035e407693..707971f8aa 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -16,6 +16,7 @@ drivers = ['af_packet', 'fm10k', 'i40e', 'ifc', 'ixgbe', + 'kni', 'mvpp2', 'null', 'octeontx', 'pcap', 'ring', 'sfc', 'thunderx', 'virtio'] std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc -- 2.20.1