X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=examples%2Fip_pipeline%2Fmeson.build;h=664223c97f8d23a7f2102fa7957e23018e95cc1c;hb=e21ee74082f2b5b358e83fc2df879c2486d633a3;hp=442f3e3a4d2c6b1e1f6c6a500d51cbfe96053bec;hpb=8245472c58c898f1bc2b30058b0f159e9ab2bb3f;p=dpdk.git diff --git a/examples/ip_pipeline/meson.build b/examples/ip_pipeline/meson.build index 442f3e3a4d..664223c97f 100644 --- a/examples/ip_pipeline/meson.build +++ b/examples/ip_pipeline/meson.build @@ -6,13 +6,22 @@ # To build this example as a standalone application with an already-installed # DPDK instance, use 'make' +build = cc.has_header('sys/epoll.h') deps += ['pipeline', 'bus_pci'] +allow_experimental_apis = true sources = files( + 'action.c', 'cli.c', 'conn.c', + 'kni.c', 'link.c', 'main.c', 'mempool.c', 'parser.c', + 'pipeline.c', 'swq.c', + 'tap.c', + 'thread.c', + 'tmgr.c', + 'cryptodev.c' )