event/dlb2: add probe-time hardware init
[dpdk.git] / drivers / event / dlb2 / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2019-2020 Intel Corporation
3
4 if not is_linux or not dpdk_conf.has('RTE_ARCH_X86_64')
5         build = false
6         reason = 'only supported on ARCH_X86_64 Linux'
7         subdir_done()
8 endif
9
10 sources = files('dlb2.c',
11                 'dlb2_iface.c',
12                 'pf/dlb2_main.c',
13                 'pf/dlb2_pf.c',
14                 'pf/base/dlb2_resource.c'
15 )
16
17 headers = files()
18
19 deps += ['mbuf', 'mempool', 'ring', 'pci', 'bus_pci']