]> git.droids-corp.org - dpdk.git/blobdiff - examples/vhost/meson.build
event/octeontx2: unlink queues during port release
[dpdk.git] / examples / vhost / meson.build
index 7b498076cfb0a5736be7ed2b793d6ffcaa203f27..9d9947c58565a9a6cbcd4d0986b5e3ec95e65c6b 100644 (file)
@@ -6,11 +6,18 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
-if host_machine.system() != 'linux'
+if not is_linux
        build = false
+       subdir_done()
 endif
+
 deps += 'vhost'
 allow_experimental_apis = true
 sources = files(
        'main.c', 'virtio_net.c'
 )
+
+if dpdk_conf.has('RTE_RAW_IOAT')
+       deps += 'raw_ioat'
+       sources += files('ioat.c')
+endif