X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fip_pipeline%2Fmeson.build;h=664223c97f8d23a7f2102fa7957e23018e95cc1c;hb=2daf565f91b505c2db86aa19f9be2fb881dfd788;hp=5ad79b28c41f7712fd87349147f62b879debce46;hpb=9a408cc8acc8808e237dceae4bedb7d1b66d3e94;p=dpdk.git diff --git a/examples/ip_pipeline/meson.build b/examples/ip_pipeline/meson.build index 5ad79b28c4..664223c97f 100644 --- a/examples/ip_pipeline/meson.build +++ b/examples/ip_pipeline/meson.build @@ -6,8 +6,11 @@ # 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', @@ -15,7 +18,10 @@ sources = files( 'main.c', 'mempool.c', 'parser.c', + 'pipeline.c', 'swq.c', 'tap.c', - 'tmgr.c' + 'thread.c', + 'tmgr.c', + 'cryptodev.c' )