diff options
author | Kevin Laatz <kevin.laatz@intel.com> | 2018-10-27 10:17:50 +0100 |
---|---|---|
committer | Thomas Monjalon <thomas@monjalon.net> | 2018-10-27 15:21:33 +0200 |
commit | 57ae0ec6262076788b8b9acd4ed1527c3655f9a9 (patch) | |
tree | 0ef8662826f9e017e11f038ed354b38873a35e68 /meson.build | |
parent | c8e76f5ac34dee8f14a57265ff9cca4fe0e1de66 (diff) | |
download | dpdk-57ae0ec6262076788b8b9acd4ed1527c3655f9a9.zip dpdk-57ae0ec6262076788b8b9acd4ed1527c3655f9a9.tar.gz dpdk-57ae0ec6262076788b8b9acd4ed1527c3655f9a9.tar.xz |
build: add dependency on telemetry to apps with meson
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>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index c9af335..b1e6eab 100644 --- a/meson.build +++ b/meson.build @@ -12,8 +12,10 @@ project('DPDK', 'C', cc = meson.get_compiler('c') dpdk_conf = configuration_data() dpdk_libraries = [] +dpdk_static_libraries = [] dpdk_drivers = [] dpdk_extra_ldflags = [] +dpdk_app_link_libraries = [] driver_install_path = join_paths(get_option('libdir'), 'dpdk/drivers') eal_pmd_path = join_paths(get_option('prefix'), driver_install_path) |