]> git.droids-corp.org - dpdk.git/blobdiff - examples/ip_pipeline/meson.build
pdump: replace constant for device name size
[dpdk.git] / examples / ip_pipeline / meson.build
index fb1b61d6ccd21fcf611d6fe68d53f2e6087f2659..945e28b58b99b4f7f4b9b2a78adc1cb27d5caf6f 100644 (file)
@@ -6,6 +6,11 @@
 # 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(
@@ -17,7 +22,10 @@ sources = files(
        'main.c',
        'mempool.c',
        'parser.c',
+       'pipeline.c',
        'swq.c',
        'tap.c',
-       'tmgr.c'
+       'thread.c',
+       'tmgr.c',
+       'cryptodev.c'
 )