net/kni: add to meson build
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 8 Jun 2018 21:20:43 +0000 (22:20 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 14 Jun 2018 17:27:50 +0000 (19:27 +0200)
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 <bruce.richardson@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
drivers/net/kni/meson.build [new file with mode: 0644]
drivers/net/meson.build

diff --git a/drivers/net/kni/meson.build b/drivers/net/kni/meson.build
new file mode 100644 (file)
index 0000000..7746818
--- /dev/null
@@ -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'
index 035e407..707971f 100644 (file)
@@ -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