X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fvdpa%2Fmeson.build;h=bd086050dc86fdc6e71ad8c329866e7d23a1e333;hb=a1978aa23bf4a8dd34087173f7769250d050315e;hp=2e38a069fead8abf55a1556f4732fe8c28c01900;hpb=edbed86d1cc3b2164284bab33d360d32317cdcd6;p=dpdk.git diff --git a/examples/vdpa/meson.build b/examples/vdpa/meson.build index 2e38a069fe..bd086050dc 100644 --- a/examples/vdpa/meson.build +++ b/examples/vdpa/meson.build @@ -6,11 +6,13 @@ # To build this example as a standalone application with an already-installed # DPDK instance, use 'make' -if host_machine.system() != 'linux' - build = false +if not is_linux + build = false + subdir_done() endif + deps += 'vhost' allow_experimental_apis = true sources = files( - 'main.c' -) \ No newline at end of file + 'main.c', +)