event/opdl: add in meson build
authorLuca Boccassi <bluca@debian.org>
Tue, 18 Sep 2018 14:58:21 +0000 (15:58 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 18 Sep 2018 20:53:35 +0000 (22:53 +0200)
Signed-off-by: Luca Boccassi <bluca@debian.org>
drivers/event/meson.build
drivers/event/opdl/meson.build [new file with mode: 0644]

index e951199..ed56d20 100644 (file)
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-drivers = ['dpaa', 'dpaa2', 'octeontx', 'skeleton', 'sw']
+drivers = ['dpaa', 'dpaa2', 'octeontx', 'opdl', 'skeleton', 'sw']
 std_deps = ['eventdev', 'kvargs']
 config_flag_fmt = 'RTE_LIBRTE_@0@_EVENTDEV_PMD'
 driver_name_fmt = 'rte_pmd_@0@_event'
diff --git a/drivers/event/opdl/meson.build b/drivers/event/opdl/meson.build
new file mode 100644 (file)
index 0000000..cc6029c
--- /dev/null
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
+
+sources = files(
+       'opdl_evdev.c',
+       'opdl_evdev_init.c',
+       'opdl_evdev_xstats.c',
+       'opdl_ring.c',
+       'opdl_test.c',
+)
+deps += ['bus_vdev']