xref: /dpdk/drivers/event/dlb2/meson.build (revision 1857f192)
1
2# SPDX-License-Identifier: BSD-3-Clause
3# Copyright(c) 2019-2020 Intel Corporation
4
5if not is_linux or not dpdk_conf.has('RTE_ARCH_X86_64')
6        build = false
7        reason = 'only supported on x86_64 Linux'
8        subdir_done()
9endif
10
11sources = files(
12        'dlb2.c',
13        'dlb2_iface.c',
14        'dlb2_xstats.c',
15        'pf/dlb2_main.c',
16        'pf/dlb2_pf.c',
17        'pf/base/dlb2_resource.c',
18        'rte_pmd_dlb2.c',
19        'dlb2_selftest.c',
20)
21
22headers = files('rte_pmd_dlb2.h')
23
24deps += ['mbuf', 'mempool', 'ring', 'pci', 'bus_pci']
25