xref: /dpdk/drivers/common/nfp/meson.build (revision 4967a1c8224286072ba4d72d3463ceca253bedd5)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright (c) 2023 Corigine, Inc.
3
4if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
5    build = false
6    reason = 'only supported on 64-bit Linux'
7endif
8
9sources = files(
10        'nfp_common.c',
11        'nfp_common_log.c',
12        'nfp_common_pci.c',
13        'nfp_dev.c',
14)
15
16deps += ['bus_pci', 'net']
17