app: add all remaining apps to meson build

Add remaining subdirectories in the app folder to the meson build.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Harry van Haaren <harry.van.haaren@intel.com>
This commit is contained in:
Bruce Richardson 2018-02-16 16:53:36 +00:00
parent 1a0accaddb
commit 996ef11761
5 changed files with 40 additions and 1 deletions

View File

@ -1,7 +1,11 @@
# SPDX-License-Identifier: BSD-3-Clause # SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation # Copyright(c) 2017 Intel Corporation
apps = ['test-eventdev', apps = ['pdump',
'proc-info',
'test-bbdev',
'test-crypto-perf',
'test-eventdev',
'test-pmd'] 'test-pmd']
# for BSD only # for BSD only

6
app/pdump/meson.build Normal file
View File

@ -0,0 +1,6 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
sources = files('main.c')
allow_experimental_apis = true
deps = ['ethdev', 'kvargs', 'pdump']

View File

@ -0,0 +1,6 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
sources = files('main.c')
allow_experimental_apis = true
deps = ['ethdev', 'metrics']

View File

@ -0,0 +1,9 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
sources = files('main.c',
'test_bbdev.c',
'test_bbdev_perf.c',
'test_bbdev_vector.c')
allow_experimental_apis = true
deps = ['bbdev', 'bus_vdev']

View File

@ -0,0 +1,14 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
sources = files('cperf_ops.c',
'cperf_options_parsing.c',
'cperf_test_common.c',
'cperf_test_latency.c',
'cperf_test_pmd_cyclecount.c',
'cperf_test_throughput.c',
'cperf_test_vector_parsing.c',
'cperf_test_vectors.c',
'cperf_test_verify.c',
'main.c')
deps = ['cryptodev']