From e89335c0f880b7631c565d283cb5c565b3146383 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Thu, 29 Mar 2018 14:54:31 +0100 Subject: [PATCH] examples: add empty meson files for unsupported ones A number of example apps are not supported by the meson build system yet, but to allow future testing with "-Dexamples=all" we add in a placeholder meson.build file indicating that the apps should not be built. Signed-off-by: Bruce Richardson Tested-by: Harry van Haaren --- examples/ethtool/meson.build | 10 ++++++++++ examples/multi_process/meson.build | 10 ++++++++++ examples/netmap_compat/meson.build | 10 ++++++++++ examples/performance-thread/meson.build | 10 ++++++++++ examples/quota_watermark/meson.build | 10 ++++++++++ examples/server_node_efd/meson.build | 10 ++++++++++ examples/vm_power_manager/meson.build | 10 ++++++++++ 7 files changed, 70 insertions(+) create mode 100644 examples/ethtool/meson.build create mode 100644 examples/multi_process/meson.build create mode 100644 examples/netmap_compat/meson.build create mode 100644 examples/performance-thread/meson.build create mode 100644 examples/quota_watermark/meson.build create mode 100644 examples/server_node_efd/meson.build create mode 100644 examples/vm_power_manager/meson.build diff --git a/examples/ethtool/meson.build b/examples/ethtool/meson.build new file mode 100644 index 0000000000..c370d7476f --- /dev/null +++ b/examples/ethtool/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +# meson file, for building this example as part of a main DPDK build. +# +# To build this example as a standalone application with an already-installed +# DPDK instance, use 'make' + +# Example app currently unsupported by meson build +build = false diff --git a/examples/multi_process/meson.build b/examples/multi_process/meson.build new file mode 100644 index 0000000000..c370d7476f --- /dev/null +++ b/examples/multi_process/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +# meson file, for building this example as part of a main DPDK build. +# +# To build this example as a standalone application with an already-installed +# DPDK instance, use 'make' + +# Example app currently unsupported by meson build +build = false diff --git a/examples/netmap_compat/meson.build b/examples/netmap_compat/meson.build new file mode 100644 index 0000000000..c370d7476f --- /dev/null +++ b/examples/netmap_compat/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +# meson file, for building this example as part of a main DPDK build. +# +# To build this example as a standalone application with an already-installed +# DPDK instance, use 'make' + +# Example app currently unsupported by meson build +build = false diff --git a/examples/performance-thread/meson.build b/examples/performance-thread/meson.build new file mode 100644 index 0000000000..c370d7476f --- /dev/null +++ b/examples/performance-thread/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +# meson file, for building this example as part of a main DPDK build. +# +# To build this example as a standalone application with an already-installed +# DPDK instance, use 'make' + +# Example app currently unsupported by meson build +build = false diff --git a/examples/quota_watermark/meson.build b/examples/quota_watermark/meson.build new file mode 100644 index 0000000000..c370d7476f --- /dev/null +++ b/examples/quota_watermark/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +# meson file, for building this example as part of a main DPDK build. +# +# To build this example as a standalone application with an already-installed +# DPDK instance, use 'make' + +# Example app currently unsupported by meson build +build = false diff --git a/examples/server_node_efd/meson.build b/examples/server_node_efd/meson.build new file mode 100644 index 0000000000..c370d7476f --- /dev/null +++ b/examples/server_node_efd/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +# meson file, for building this example as part of a main DPDK build. +# +# To build this example as a standalone application with an already-installed +# DPDK instance, use 'make' + +# Example app currently unsupported by meson build +build = false diff --git a/examples/vm_power_manager/meson.build b/examples/vm_power_manager/meson.build new file mode 100644 index 0000000000..c370d7476f --- /dev/null +++ b/examples/vm_power_manager/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +# meson file, for building this example as part of a main DPDK build. +# +# To build this example as a standalone application with an already-installed +# DPDK instance, use 'make' + +# Example app currently unsupported by meson build +build = false -- 2.20.1