examples: reduce indentation in build files
[dpdk.git] / examples / l3fwd / meson.build
index 864327c..773ebf4 100644 (file)
@@ -6,7 +6,14 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
-deps += ['hash', 'lpm', 'eventdev']
+allow_experimental_apis = true
+deps += ['hash', 'lpm', 'fib', 'eventdev']
 sources = files(
-       'l3fwd_em.c', 'l3fwd_lpm.c', 'l3fwd_event.c', 'main.c'
+    'l3fwd_em.c',
+    'l3fwd_event.c',
+    'l3fwd_event_internal_port.c',
+    'l3fwd_event_generic.c',
+    'l3fwd_fib.c',
+    'l3fwd_lpm.c',
+    'main.c',
 )