xref: /dpdk/drivers/net/nfp/meson.build (revision 8d7a59f1)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2018 Intel Corporation
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
8sources = files(
9        'nfpcore/nfp_cpp_pcie_ops.c',
10        'nfpcore/nfp_nsp.c',
11        'nfpcore/nfp_cppcore.c',
12        'nfpcore/nfp_resource.c',
13        'nfpcore/nfp_mip.c',
14        'nfpcore/nfp_nffw.c',
15        'nfpcore/nfp_rtsym.c',
16        'nfpcore/nfp_nsp_cmds.c',
17        'nfpcore/nfp_crc.c',
18        'nfpcore/nfp_mutex.c',
19        'nfpcore/nfp_nsp_eth.c',
20        'nfpcore/nfp_hwinfo.c',
21        'nfp_common.c',
22        'nfp_rxtx.c',
23        'nfp_cpp_bridge.c',
24        'nfp_ethdev_vf.c',
25        'nfp_ethdev.c',
26)
27