summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2021-08-16 18:14:48 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2021-08-17 10:12:24 +0200
commit453a6d899ea9f4cca4daec411bfe05d635ced534 (patch)
tree69b44e140505ad1819a5e7a0e2fc398b853adda8
parentfe1051d908398c1cefc8d63838c05a8150bc7680 (diff)
Raise cmake_minimum_required to VERSION 3.16 in examples
Pick-to: 6.2 Task-number: QTBUG-95636 Change-Id: I821f412f9dbe11ae99ffd888a7ab2ba415ed9379 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
-rw-r--r--examples/wayland/custom-extension/compositor/CMakeLists.txt2
-rw-r--r--examples/wayland/custom-extension/cpp-client/CMakeLists.txt2
-rw-r--r--examples/wayland/custom-extension/qml-client/CMakeLists.txt2
-rw-r--r--examples/wayland/hwlayer-compositor/CMakeLists.txt2
-rw-r--r--examples/wayland/ivi-compositor/CMakeLists.txt2
-rw-r--r--examples/wayland/minimal-cpp/CMakeLists.txt2
-rw-r--r--examples/wayland/minimal-qml/CMakeLists.txt2
-rw-r--r--examples/wayland/multi-output/CMakeLists.txt2
-rw-r--r--examples/wayland/multi-screen/CMakeLists.txt2
-rw-r--r--examples/wayland/overview-compositor/CMakeLists.txt2
-rw-r--r--examples/wayland/pure-qml/CMakeLists.txt2
-rw-r--r--examples/wayland/server-buffer/compositor/CMakeLists.txt2
-rw-r--r--examples/wayland/server-buffer/cpp-client/CMakeLists.txt2
-rw-r--r--examples/wayland/server-side-decoration/CMakeLists.txt2
-rw-r--r--examples/wayland/spanning-screens/CMakeLists.txt2
15 files changed, 15 insertions, 15 deletions
diff --git a/examples/wayland/custom-extension/compositor/CMakeLists.txt b/examples/wayland/custom-extension/compositor/CMakeLists.txt
index 5bea51e73..1826c745f 100644
--- a/examples/wayland/custom-extension/compositor/CMakeLists.txt
+++ b/examples/wayland/custom-extension/compositor/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from compositor.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(custom-extension-compositor) # special case
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/custom-extension/cpp-client/CMakeLists.txt b/examples/wayland/custom-extension/cpp-client/CMakeLists.txt
index ce1203517..30012c748 100644
--- a/examples/wayland/custom-extension/cpp-client/CMakeLists.txt
+++ b/examples/wayland/custom-extension/cpp-client/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from cpp-client.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(custom-extension-cpp-client) # special case
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/custom-extension/qml-client/CMakeLists.txt b/examples/wayland/custom-extension/qml-client/CMakeLists.txt
index 956d1f4d7..6d7688e6b 100644
--- a/examples/wayland/custom-extension/qml-client/CMakeLists.txt
+++ b/examples/wayland/custom-extension/qml-client/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from qml-client.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(custom-extension-qml-client) # special case
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/hwlayer-compositor/CMakeLists.txt b/examples/wayland/hwlayer-compositor/CMakeLists.txt
index 079a0aa74..2fa09e7ee 100644
--- a/examples/wayland/hwlayer-compositor/CMakeLists.txt
+++ b/examples/wayland/hwlayer-compositor/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from hwlayer-compositor.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(hwlayer-compositor LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/ivi-compositor/CMakeLists.txt b/examples/wayland/ivi-compositor/CMakeLists.txt
index 0374c1e45..d198c8059 100644
--- a/examples/wayland/ivi-compositor/CMakeLists.txt
+++ b/examples/wayland/ivi-compositor/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from ivi-compositor.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(ivi-compositor LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/minimal-cpp/CMakeLists.txt b/examples/wayland/minimal-cpp/CMakeLists.txt
index cbaa9dc26..abc99d6b9 100644
--- a/examples/wayland/minimal-cpp/CMakeLists.txt
+++ b/examples/wayland/minimal-cpp/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from minimal-cpp.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(minimal-cpp LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/minimal-qml/CMakeLists.txt b/examples/wayland/minimal-qml/CMakeLists.txt
index f19d3e931..6f9b0ac2c 100644
--- a/examples/wayland/minimal-qml/CMakeLists.txt
+++ b/examples/wayland/minimal-qml/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from minimal-qml.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(minimal-qml LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/multi-output/CMakeLists.txt b/examples/wayland/multi-output/CMakeLists.txt
index 2f4019f69..0a4ee50d0 100644
--- a/examples/wayland/multi-output/CMakeLists.txt
+++ b/examples/wayland/multi-output/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from multi-output.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(multi-output LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/multi-screen/CMakeLists.txt b/examples/wayland/multi-screen/CMakeLists.txt
index d9c59f3fd..df6357cc4 100644
--- a/examples/wayland/multi-screen/CMakeLists.txt
+++ b/examples/wayland/multi-screen/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from multi-screen.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(multi-screen LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/overview-compositor/CMakeLists.txt b/examples/wayland/overview-compositor/CMakeLists.txt
index 7e320702e..97fd15e32 100644
--- a/examples/wayland/overview-compositor/CMakeLists.txt
+++ b/examples/wayland/overview-compositor/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from overview-compositor.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(overview-compositor LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/pure-qml/CMakeLists.txt b/examples/wayland/pure-qml/CMakeLists.txt
index bda536bfa..3be6e2239 100644
--- a/examples/wayland/pure-qml/CMakeLists.txt
+++ b/examples/wayland/pure-qml/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from pure-qml.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(pure-qml LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/server-buffer/compositor/CMakeLists.txt b/examples/wayland/server-buffer/compositor/CMakeLists.txt
index aefdc74fb..1d181a8e3 100644
--- a/examples/wayland/server-buffer/compositor/CMakeLists.txt
+++ b/examples/wayland/server-buffer/compositor/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from compositor.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(compositor) # special case
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/server-buffer/cpp-client/CMakeLists.txt b/examples/wayland/server-buffer/cpp-client/CMakeLists.txt
index 763cfc0d4..6787e3f7c 100644
--- a/examples/wayland/server-buffer/cpp-client/CMakeLists.txt
+++ b/examples/wayland/server-buffer/cpp-client/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from cpp-client.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(server-buffer-cpp-client) # special case
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/server-side-decoration/CMakeLists.txt b/examples/wayland/server-side-decoration/CMakeLists.txt
index dc95b805f..01895f425 100644
--- a/examples/wayland/server-side-decoration/CMakeLists.txt
+++ b/examples/wayland/server-side-decoration/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from server-side-decoration.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(server-side-decoration LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/wayland/spanning-screens/CMakeLists.txt b/examples/wayland/spanning-screens/CMakeLists.txt
index c99110b01..58d38f2f8 100644
--- a/examples/wayland/spanning-screens/CMakeLists.txt
+++ b/examples/wayland/spanning-screens/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from spanning-screens.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(spanning-screens LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)