befc693a61
The ip_pipeline and qos_meter example apps now use experimental APIs so
this fact needs to be flagged in their meson.build files.
Fixes: c06ddf9698
("meter: add configuration profile")
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
14 lines
351 B
Meson
14 lines
351 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
# meson file, for building this example as part of a main DPDK build.
|
|
#
|
|
# To build this example as a standalone application with an already-installed
|
|
# DPDK instance, use 'make'
|
|
|
|
deps += 'meter'
|
|
allow_experimental_apis = true
|
|
sources = files(
|
|
'main.c', 'rte_policer.c'
|
|
)
|