mirror of https://github.com/F-Stack/f-stack.git
17 lines
348 B
Meson
17 lines
348 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (c) 2023 Corigine, Inc.
|
|
|
|
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
|
|
build = false
|
|
reason = 'only supported on 64-bit Linux'
|
|
endif
|
|
|
|
sources = files(
|
|
'nfp_common.c',
|
|
'nfp_common_log.c',
|
|
'nfp_common_pci.c',
|
|
'nfp_dev.c',
|
|
)
|
|
|
|
deps += ['bus_pci', 'net']
|