19d024003d
Since two components wants to know if the jansson library is available, move it to config/. Signed-off-by: David Marchand <david.marchand@redhat.com>
12 lines
303 B
Meson
12 lines
303 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
sources = files('rte_metrics.c', 'rte_metrics_telemetry.c')
|
|
headers = files('rte_metrics.h', 'rte_metrics_telemetry.h')
|
|
|
|
if dpdk_conf.has('RTE_HAS_JANSSON')
|
|
ext_deps += jansson_dep
|
|
endif
|
|
|
|
deps += ['ethdev', 'telemetry']
|