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:
parent
1a0accaddb
commit
996ef11761
@ -1,7 +1,11 @@
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# Copyright(c) 2017 Intel Corporation
|
||||
|
||||
apps = ['test-eventdev',
|
||||
apps = ['pdump',
|
||||
'proc-info',
|
||||
'test-bbdev',
|
||||
'test-crypto-perf',
|
||||
'test-eventdev',
|
||||
'test-pmd']
|
||||
|
||||
# for BSD only
|
||||
|
6
app/pdump/meson.build
Normal file
6
app/pdump/meson.build
Normal 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']
|
6
app/proc-info/meson.build
Normal file
6
app/proc-info/meson.build
Normal 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']
|
9
app/test-bbdev/meson.build
Normal file
9
app/test-bbdev/meson.build
Normal 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']
|
14
app/test-crypto-perf/meson.build
Normal file
14
app/test-crypto-perf/meson.build
Normal 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']
|
Loading…
Reference in New Issue
Block a user