numam-dpdk/drivers/net/nfb/meson.build
Bruce Richardson 530588f3cd drivers: add reasons for components being disabled
For each driver where we optionally disable it, add in the reason why it's
being disabled, so the user knows how to fix it.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Luca Boccassi <bluca@debian.org>
2019-07-02 23:21:11 +02:00

17 lines
486 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2019 Cesnet
# Copyright(c) 2019 Netcope Technologies, a.s. <info@netcope.com>
# All rights reserved.
dep = cc.find_library('nfb', required: false)
reason = 'missing dependency, "libnfb"'
build = dep.found() and cc.has_header('nfb/nfb.h', dependencies: dep)
nc = dependency('netcope-common', required: false)
ext_deps += dep
ext_deps += nc
sources = files('nfb_rx.c', 'nfb_tx.c', 'nfb_stats.c', 'nfb_ethdev.c', 'nfb_rxmode.c')