event/opdl: add in meson build

Signed-off-by: Luca Boccassi <bluca@debian.org>
This commit is contained in:
Luca Boccassi 2018-09-18 15:58:21 +01:00 committed by Thomas Monjalon
parent 76ca29a7d6
commit 7abb521d2c
2 changed files with 12 additions and 1 deletions

View 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'

View File

@ -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']