X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fip_pipeline%2Fmeson.build;h=57f522c24cf96c721bd720e2ab7aec14d2f7e1f7;hb=3c481324baf32b98a7b7ce669ecde98a0662f07c;hp=fb1b61d6ccd21fcf611d6fe68d53f2e6087f2659;hpb=719374345ceea6ca3321b0f3f0bba2a1c7be1831;p=dpdk.git diff --git a/examples/ip_pipeline/meson.build b/examples/ip_pipeline/meson.build index fb1b61d6cc..57f522c24c 100644 --- a/examples/ip_pipeline/meson.build +++ b/examples/ip_pipeline/meson.build @@ -6,18 +6,26 @@ # To build this example as a standalone application with an already-installed # DPDK instance, use 'make' +build = cc.has_header('sys/epoll.h') +if not build + subdir_done() +endif + 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', - 'swq.c', - 'tap.c', - 'tmgr.c' + 'action.c', + 'cli.c', + 'conn.c', + 'cryptodev.c', + 'kni.c', + 'link.c', + 'main.c', + 'mempool.c', + 'parser.c', + 'pipeline.c', + 'swq.c', + 'tap.c', + 'thread.c', + 'tmgr.c', )