vdpa/ifc: set notify and vring relay thread names
[dpdk.git] / examples / ip_pipeline / meson.build
index a89cb30..57f522c 100644 (file)
@@ -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',
 )