]> git.droids-corp.org - dpdk.git/blobdiff - examples/ip_pipeline/meson.build
telemetry: fix missing header include
[dpdk.git] / examples / ip_pipeline / meson.build
index e87581126b86401817b7d836c39362eaf51c5e80..945e28b58b99b4f7f4b9b2a78adc1cb27d5caf6f 100644 (file)
@@ -6,15 +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',
+       'pipeline.c',
        'swq.c',
        'tap.c',
-       'tmgr.c'
+       'thread.c',
+       'tmgr.c',
+       'cryptodev.c'
 )