X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fvhost%2Fmeson.build;h=87a637f83f262da625c7ca86c549570a5d92d10f;hb=23f7ec1d9b7ccfcfb9b9f67d33cf6cbf7f5034d3;hp=3e6e69047b6bbe3540aea1a356885aa8d48bd745;hpb=6c9457c27954f16d99f3798711eb253fbaf05fa3;p=dpdk.git diff --git a/examples/vhost/meson.build b/examples/vhost/meson.build index 3e6e69047b..87a637f83f 100644 --- a/examples/vhost/meson.build +++ b/examples/vhost/meson.build @@ -6,7 +6,15 @@ # To build this example as a standalone application with an already-installed # DPDK instance, use 'make' +if not is_linux + build = false + subdir_done() +endif + deps += 'vhost' +deps += 'dmadev' +allow_experimental_apis = true sources = files( - 'main.c', 'virtio_net.c' + 'main.c', + 'virtio_net.c', )