X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fevent%2Fdlb2%2Fmeson.build;h=f963589fd3427250c2444d28e71d2995877d9592;hb=fb15afa295af939a7c9143a8641ac29a338409f1;hp=d7390ec1c1228cdb84c69334f6d5dd204f1b49d9;hpb=e7c9971a857af75d2cef8b7f64eb4671e8b197e5;p=dpdk.git diff --git a/drivers/event/dlb2/meson.build b/drivers/event/dlb2/meson.build index d7390ec1c1..f963589fd3 100644 --- a/drivers/event/dlb2/meson.build +++ b/drivers/event/dlb2/meson.build @@ -1,19 +1,24 @@ + # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2019-2020 Intel Corporation if not is_linux or not dpdk_conf.has('RTE_ARCH_X86_64') build = false - reason = 'only supported on ARCH_X86_64 Linux' + reason = 'only supported on x86_64 Linux' subdir_done() endif -sources = files('dlb2.c', - 'dlb2_iface.c', - 'pf/dlb2_main.c', - 'pf/dlb2_pf.c', - 'pf/base/dlb2_resource.c' +sources = files( + 'dlb2.c', + 'dlb2_iface.c', + 'dlb2_xstats.c', + 'pf/dlb2_main.c', + 'pf/dlb2_pf.c', + 'pf/base/dlb2_resource.c', + 'rte_pmd_dlb2.c', + 'dlb2_selftest.c', ) -headers = files() +headers = files('rte_pmd_dlb2.h') deps += ['mbuf', 'mempool', 'ring', 'pci', 'bus_pci']