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