]> git.droids-corp.org - dpdk.git/blobdiff - examples/l2fwd-cat/meson.build
bus/pci: fix use after free on unplug
[dpdk.git] / examples / l2fwd-cat / meson.build
index 4e2777a03358d979eb733645d7a4f57e6556b943..68554e76ce7b2709d2f036fa778639e2eaf149cc 100644 (file)
@@ -8,8 +8,14 @@
 
 pqos = cc.find_library('pqos', required: false)
 build = pqos.found()
+if not build
+    subdir_done()
+endif
+
 ext_deps += pqos
+allow_experimental_apis = true
 cflags += '-I/usr/local/include' # assume pqos lib installed in /usr/local
 sources = files(
-       'cat.c', 'l2fwd-cat.c'
+        'cat.c',
+        'l2fwd-cat.c',
 )