X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=examples%2Fip_pipeline%2Fmeson.build;h=57f522c24cf96c721bd720e2ab7aec14d2f7e1f7;hb=a011555fb85bbf65a1578dce7383ef1bd630be79;hp=a89cb309d967383d6b3850d3201a8ea2cc2e781f;hpb=4bbf8e30aa5e2a621db288062c72aed324cae191;p=dpdk.git diff --git a/examples/ip_pipeline/meson.build b/examples/ip_pipeline/meson.build index a89cb309d9..57f522c24c 100644 --- a/examples/ip_pipeline/meson.build +++ b/examples/ip_pipeline/meson.build @@ -6,10 +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( - 'cli.c', - 'conn.c', - 'main.c', - 'parser.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', )