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>
 # 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
 
--- /dev/null
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright(c) 2018 Intel Corporation
+
+sources = files('main.c')
+allow_experimental_apis = true
+deps = ['ethdev', 'kvargs', 'pdump']
 
--- /dev/null
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright(c) 2018 Intel Corporation
+
+sources = files('main.c')
+allow_experimental_apis = true
+deps = ['ethdev', 'metrics']
 
--- /dev/null
+# 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']
 
--- /dev/null
+# 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']