X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=examples%2Fip_pipeline%2Fmeson.build;h=664223c97f8d23a7f2102fa7957e23018e95cc1c;hb=581476d6417f02d1713853a728e44777d36ae551;hp=fb1b61d6ccd21fcf611d6fe68d53f2e6087f2659;hpb=719374345ceea6ca3321b0f3f0bba2a1c7be1831;p=dpdk.git diff --git a/examples/ip_pipeline/meson.build b/examples/ip_pipeline/meson.build index fb1b61d6cc..664223c97f 100644 --- a/examples/ip_pipeline/meson.build +++ b/examples/ip_pipeline/meson.build @@ -6,6 +6,7 @@ # 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( @@ -17,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' )