raw/ioat: add bus driver for device scanning automatically
[dpdk.git] / drivers / raw / ioat / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright 2019 Intel Corporation
3
4 build = dpdk_conf.has('RTE_ARCH_X86')
5 reason = 'only supported on x86'
6 sources = files(
7         'idxd_bus.c',
8         'idxd_pci.c',
9         'ioat_common.c',
10         'ioat_rawdev.c',
11         'ioat_rawdev_test.c',
12 )
13 deps += ['bus_pci', 'mbuf', 'rawdev']
14 headers = files(
15         'rte_ioat_rawdev.h',
16         'rte_ioat_rawdev_fns.h',
17 )