57ae0ec626
This patch adds telemetry as a dependecy to all applications. Without these changes, the --telemetry flag will not be recognised and applications will fail to run if they want to enable telemetry. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Signed-off-by: Kevin Laatz <kevin.laatz@intel.com> Signed-off-by: Radu Nicolau <radu.nicolau@intel.com> Acked-by: Harry van Haaren <harry.van.haaren@intel.com>
16 lines
521 B
Meson
16 lines
521 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
sources = files('rte_telemetry.c', 'rte_telemetry_parser.c', 'rte_telemetry_parser_test.c')
|
|
headers = files('rte_telemetry.h', 'rte_telemetry_internal.h', 'rte_telemetry_parser.h', 'rte_telemetry_parser_test.h')
|
|
deps += ['metrics', 'ethdev']
|
|
cflags += '-DALLOW_EXPERIMENTAL_API'
|
|
|
|
jansson = cc.find_library('jansson', required: false)
|
|
if jansson.found()
|
|
ext_deps += jansson
|
|
dpdk_app_link_libraries += ['telemetry']
|
|
else
|
|
build = false
|
|
endif
|