event/dlb2: add eventdev probe
[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                 'pf/dlb2_main.c',
12                 'pf/dlb2_pf.c'
13 )
14
15 headers = files()
16
17 deps += ['mbuf', 'mempool', 'ring', 'pci', 'bus_pci']