]> git.droids-corp.org - dpdk.git/blobdiff - examples/ioat/meson.build
net/ice: fix memzone leak after device init failure
[dpdk.git] / examples / ioat / meson.build
index ed832896365ef2897ac5c3a6337971b4229cfbe9..68bce1ab03dae7af1596bff582bcbf0e79e31af9 100644 (file)
@@ -6,10 +6,14 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
-build = dpdk_conf.has('RTE_LIBRTE_PMD_IOAT_RAWDEV')
+allow_experimental_apis = true
+build = dpdk_conf.has('RTE_RAW_IOAT')
+if not build
+    subdir_done()
+endif
 
-deps += ['rawdev_ioat']
+deps += ['raw_ioat']
 
 sources = files(
-       'ioatfwd.c'
+        'ioatfwd.c',
 )