X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fvhost%2Fmeson.build;h=3efd5e6540416cee72d286ab403c84470ec65ca2;hb=96b25c496aadae16c548ea25c0267a73154dbd64;hp=872d511539102eea3c0222f99b73683cd2e8192c;hpb=adf93ca564c73183e1c705cd7f35b98f3a660228;p=dpdk.git diff --git a/examples/vhost/meson.build b/examples/vhost/meson.build index 872d511539..3efd5e6540 100644 --- a/examples/vhost/meson.build +++ b/examples/vhost/meson.build @@ -7,10 +7,18 @@ # DPDK instance, use 'make' if not is_linux - build = false + build = false + subdir_done() endif + deps += 'vhost' allow_experimental_apis = true sources = files( - 'main.c', 'virtio_net.c' + 'main.c', + 'virtio_net.c', ) + +if dpdk_conf.has('RTE_RAW_IOAT') + deps += 'raw_ioat' + sources += files('ioat.c') +endif