f22638b8e43399b67072e705ae73e4688c2b08cf
[dpdk.git] / drivers / event / dlb2 / meson.build
1
2 # SPDX-License-Identifier: BSD-3-Clause
3 # Copyright(c) 2019-2020 Intel Corporation
4
5 if 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()
9 endif
10
11 sources = files('dlb2.c',
12                 'dlb2_iface.c',
13                 'dlb2_xstats.c',
14                 'pf/dlb2_main.c',
15                 'pf/dlb2_pf.c',
16                 'pf/base/dlb2_resource.c',
17                 'rte_pmd_dlb2.c',
18                 'dlb2_selftest.c'
19 )
20
21 headers = files('rte_pmd_dlb2.h')
22
23 deps += ['mbuf', 'mempool', 'ring', 'pci', 'bus_pci']