X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fevent%2Fdlb2%2Fmeson.build;h=f963589fd3427250c2444d28e71d2995877d9592;hb=fb15afa295af939a7c9143a8641ac29a338409f1;hp=6a569c95c916f11a51238be8b386f407e2446d81;hpb=ef3da1e7671fb4ccd66601619f478e84c8100be0;p=dpdk.git diff --git a/drivers/event/dlb2/meson.build b/drivers/event/dlb2/meson.build index 6a569c95c9..f963589fd3 100644 --- a/drivers/event/dlb2/meson.build +++ b/drivers/event/dlb2/meson.build @@ -1,14 +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') +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']