X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fip_pipeline%2Fmeson.build;h=664223c97f8d23a7f2102fa7957e23018e95cc1c;hb=a8af994b41ffb982d2940bbd8bef89dd345cdbb6;hp=cb2154c29f59fa0298f2d9974d9817c1e8f2d26c;hpb=25961ff3bcb9ae8d7a46305a1565a33438333b7a;p=dpdk.git diff --git a/examples/ip_pipeline/meson.build b/examples/ip_pipeline/meson.build index cb2154c29f..664223c97f 100644 --- a/examples/ip_pipeline/meson.build +++ b/examples/ip_pipeline/meson.build @@ -6,14 +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', - 'tmgr.c' + 'tap.c', + 'thread.c', + 'tmgr.c', + 'cryptodev.c' )