summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2021-09-22 16:17:39 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2021-09-22 19:37:36 +0200
commit6d6a10dff46403b8c3ab043101dc90d39034ff47 (patch)
treec777fb76d9fc056e89e9fced20b18db44d6d74ce /examples
parent664214cf403ce505810335eaf7b90835c53c6090 (diff)
CMake: Bump almost all cmake_minimum_required calls to 3.16
Needed for subsequent change that will check and error out if the version is lower than 3.16. We do that to ensure all policies introduced by CMake up to version 3.16 have their behavior set to NEW. Pick-to: 6.2 Task-number: QTBUG-95018 Change-Id: I1191a6b4b5c13b2b6047a0e2a2ff8c3801f6762b Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/assistant/remotecontrol/CMakeLists.txt2
-rw-r--r--examples/assistant/simpletextviewer/CMakeLists.txt2
-rw-r--r--examples/designer/calculatorbuilder/CMakeLists.txt2
-rw-r--r--examples/designer/calculatorform/CMakeLists.txt2
-rw-r--r--examples/designer/containerextension/CMakeLists.txt2
-rw-r--r--examples/designer/customwidgetplugin/CMakeLists.txt2
-rw-r--r--examples/designer/taskmenuextension/CMakeLists.txt2
-rw-r--r--examples/designer/worldtimeclockbuilder/CMakeLists.txt2
-rw-r--r--examples/designer/worldtimeclockplugin/CMakeLists.txt2
-rw-r--r--examples/help/contextsensitivehelp/CMakeLists.txt2
-rw-r--r--examples/linguist/arrowpad/CMakeLists.txt2
-rw-r--r--examples/linguist/hellotr/CMakeLists.txt2
-rw-r--r--examples/linguist/trollprint/CMakeLists.txt2
-rw-r--r--examples/uitools/multipleinheritance/CMakeLists.txt2
-rw-r--r--examples/uitools/textfinder/CMakeLists.txt2
15 files changed, 15 insertions, 15 deletions
diff --git a/examples/assistant/remotecontrol/CMakeLists.txt b/examples/assistant/remotecontrol/CMakeLists.txt
index 6f80e0478..c8b3b5c91 100644
--- a/examples/assistant/remotecontrol/CMakeLists.txt
+++ b/examples/assistant/remotecontrol/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from remotecontrol.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(remotecontrol LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/assistant/simpletextviewer/CMakeLists.txt b/examples/assistant/simpletextviewer/CMakeLists.txt
index 734006256..fb4f100be 100644
--- a/examples/assistant/simpletextviewer/CMakeLists.txt
+++ b/examples/assistant/simpletextviewer/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from simpletextviewer.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(simpletextviewer LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/designer/calculatorbuilder/CMakeLists.txt b/examples/designer/calculatorbuilder/CMakeLists.txt
index 2cb01e947..dc1d9de5b 100644
--- a/examples/designer/calculatorbuilder/CMakeLists.txt
+++ b/examples/designer/calculatorbuilder/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from calculatorbuilder.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(calculatorbuilder LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/designer/calculatorform/CMakeLists.txt b/examples/designer/calculatorform/CMakeLists.txt
index ad721d0cc..7034d6b17 100644
--- a/examples/designer/calculatorform/CMakeLists.txt
+++ b/examples/designer/calculatorform/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from calculatorform.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(calculatorform LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/designer/containerextension/CMakeLists.txt b/examples/designer/containerextension/CMakeLists.txt
index 1a6a0f61b..efc0e8ef7 100644
--- a/examples/designer/containerextension/CMakeLists.txt
+++ b/examples/designer/containerextension/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from containerextension.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(containerextension LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/designer/customwidgetplugin/CMakeLists.txt b/examples/designer/customwidgetplugin/CMakeLists.txt
index 764fe7373..ca2b0448b 100644
--- a/examples/designer/customwidgetplugin/CMakeLists.txt
+++ b/examples/designer/customwidgetplugin/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from customwidgetplugin.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(customwidgetplugin LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/designer/taskmenuextension/CMakeLists.txt b/examples/designer/taskmenuextension/CMakeLists.txt
index a91b58eac..eb565d600 100644
--- a/examples/designer/taskmenuextension/CMakeLists.txt
+++ b/examples/designer/taskmenuextension/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from taskmenuextension.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(taskmenuextension LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/designer/worldtimeclockbuilder/CMakeLists.txt b/examples/designer/worldtimeclockbuilder/CMakeLists.txt
index 2c93155c7..b435dba0d 100644
--- a/examples/designer/worldtimeclockbuilder/CMakeLists.txt
+++ b/examples/designer/worldtimeclockbuilder/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from worldtimeclockbuilder.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(worldtimeclockbuilder LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/designer/worldtimeclockplugin/CMakeLists.txt b/examples/designer/worldtimeclockplugin/CMakeLists.txt
index 6e675fc9b..3cecd4b6d 100644
--- a/examples/designer/worldtimeclockplugin/CMakeLists.txt
+++ b/examples/designer/worldtimeclockplugin/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from worldtimeclockplugin.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(worldtimeclockplugin LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/help/contextsensitivehelp/CMakeLists.txt b/examples/help/contextsensitivehelp/CMakeLists.txt
index 40d89a3e4..f1b8808f0 100644
--- a/examples/help/contextsensitivehelp/CMakeLists.txt
+++ b/examples/help/contextsensitivehelp/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from contextsensitivehelp.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(contextsensitivehelp LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/linguist/arrowpad/CMakeLists.txt b/examples/linguist/arrowpad/CMakeLists.txt
index cf652c8f2..94b003262 100644
--- a/examples/linguist/arrowpad/CMakeLists.txt
+++ b/examples/linguist/arrowpad/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from arrowpad.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(arrowpad LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/linguist/hellotr/CMakeLists.txt b/examples/linguist/hellotr/CMakeLists.txt
index c9c65ac6c..74cb0e05a 100644
--- a/examples/linguist/hellotr/CMakeLists.txt
+++ b/examples/linguist/hellotr/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from hellotr.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(hellotr LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/linguist/trollprint/CMakeLists.txt b/examples/linguist/trollprint/CMakeLists.txt
index e1c953cdf..bb378111f 100644
--- a/examples/linguist/trollprint/CMakeLists.txt
+++ b/examples/linguist/trollprint/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from trollprint.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(trollprint LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/uitools/multipleinheritance/CMakeLists.txt b/examples/uitools/multipleinheritance/CMakeLists.txt
index 7a942d53a..59c240144 100644
--- a/examples/uitools/multipleinheritance/CMakeLists.txt
+++ b/examples/uitools/multipleinheritance/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from multipleinheritance.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(multipleinheritance LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/uitools/textfinder/CMakeLists.txt b/examples/uitools/textfinder/CMakeLists.txt
index 84fbd72c4..96911c675 100644
--- a/examples/uitools/textfinder/CMakeLists.txt
+++ b/examples/uitools/textfinder/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from textfinder.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(textfinder LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)