app: add all remaining apps to meson build
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 16 Feb 2018 16:53:36 +0000 (16:53 +0000)
committerBruce Richardson <bruce.richardson@intel.com>
Mon, 12 Mar 2018 15:29:27 +0000 (16:29 +0100)
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>
app/meson.build
app/pdump/meson.build [new file with mode: 0644]
app/proc-info/meson.build [new file with mode: 0644]
app/test-bbdev/meson.build [new file with mode: 0644]
app/test-crypto-perf/meson.build [new file with mode: 0644]

index 7491316..99e0b93 100644 (file)
@@ -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
diff --git a/app/pdump/meson.build b/app/pdump/meson.build
new file mode 100644 (file)
index 0000000..988cb4e
--- /dev/null
@@ -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']
diff --git a/app/proc-info/meson.build b/app/proc-info/meson.build
new file mode 100644 (file)
index 0000000..9c148e3
--- /dev/null
@@ -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']
diff --git a/app/test-bbdev/meson.build b/app/test-bbdev/meson.build
new file mode 100644 (file)
index 0000000..653907d
--- /dev/null
@@ -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']
diff --git a/app/test-crypto-perf/meson.build b/app/test-crypto-perf/meson.build
new file mode 100644 (file)
index 0000000..6eb22a5
--- /dev/null
@@ -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']