summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2021-09-22 09:23:15 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-09-22 13:25:28 +0000
commit76db5fbdd64a96638dd217369a834564e584da24 (patch)
tree6a7027ae262aa9682a4457e615ad1941183b8fe4
parentfd7ad4787bacf97f0e6e566595f5811125a19bc3 (diff)
Raise cmake_minimum_required to VERSION 3.16 in examples and tests
Task-number: QTBUG-95636 Change-Id: I937379606206401a3452b5b409e32e9a85772075 Reviewed-by: Robert Griebl <robert.griebl@qt.io> (cherry picked from commit 6bb2f33d2cdd380795cdf12352ba4fd92d8863d2) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--examples/ifmedia/mediaplayer/CMakeLists.txt2
-rw-r--r--examples/ifmedia/tuner/CMakeLists.txt2
-rw-r--r--examples/ifvehiclefunctions/climate-qml/CMakeLists.txt2
-rw-r--r--examples/ifvehiclefunctions/climate-widget/CMakeLists.txt2
-rw-r--r--examples/ifvehiclefunctions/window-qml/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-addressbook/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-climate/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-remote/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-remote/demo/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-remote/frontend/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-remote/server_qtro/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-tutorial/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-tutorial/chapter1-basics/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-tutorial/chapter2-enums-structs/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-tutorial/chapter3-simulation-backend/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-tutorial/chapter4-simulation-behavior/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-tutorial/chapter5-ipc/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-tutorial/chapter6-own-backend/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-tutorial/chapter6-own-backend/frontend/CMakeLists.txt2
-rw-r--r--examples/interfaceframework/qface-tutorial/instrument-cluster/CMakeLists.txt2
-rw-r--r--tests/auto/core/ifcodegen/custom-template/extra-search-path/CMakeLists.txt2
-rw-r--r--tests/auto/core/ifcodegen/custom-template/full-path/CMakeLists.txt2
-rw-r--r--tests/auto/core/ifcodegen/custom-template/global-search-path/CMakeLists.txt2
24 files changed, 24 insertions, 24 deletions
diff --git a/examples/ifmedia/mediaplayer/CMakeLists.txt b/examples/ifmedia/mediaplayer/CMakeLists.txt
index 64ebed1d..8c5fe504 100644
--- a/examples/ifmedia/mediaplayer/CMakeLists.txt
+++ b/examples/ifmedia/mediaplayer/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from mediaplayer.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qtifmediaplayer LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/ifmedia/tuner/CMakeLists.txt b/examples/ifmedia/tuner/CMakeLists.txt
index 4d534b0c..54a7728a 100644
--- a/examples/ifmedia/tuner/CMakeLists.txt
+++ b/examples/ifmedia/tuner/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from tuner.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(tuner LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/ifvehiclefunctions/climate-qml/CMakeLists.txt b/examples/ifvehiclefunctions/climate-qml/CMakeLists.txt
index 4bef4f24..5c0458af 100644
--- a/examples/ifvehiclefunctions/climate-qml/CMakeLists.txt
+++ b/examples/ifvehiclefunctions/climate-qml/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from climate_qml.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(climate_qml LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/ifvehiclefunctions/climate-widget/CMakeLists.txt b/examples/ifvehiclefunctions/climate-widget/CMakeLists.txt
index fbbac0c6..7a1e026f 100644
--- a/examples/ifvehiclefunctions/climate-widget/CMakeLists.txt
+++ b/examples/ifvehiclefunctions/climate-widget/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from climate_widget.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(climate_widget LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/ifvehiclefunctions/window-qml/CMakeLists.txt b/examples/ifvehiclefunctions/window-qml/CMakeLists.txt
index 41f89141..b2f87f47 100644
--- a/examples/ifvehiclefunctions/window-qml/CMakeLists.txt
+++ b/examples/ifvehiclefunctions/window-qml/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from window_qml.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(window_qml LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/interfaceframework/CMakeLists.txt b/examples/interfaceframework/CMakeLists.txt
index 65744ca8..16e819b6 100644
--- a/examples/interfaceframework/CMakeLists.txt
+++ b/examples/interfaceframework/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from interfaceframework.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(example LANGUAGES CXX)
if(QT_FEATURE_ifcodegen)
diff --git a/examples/interfaceframework/qface-addressbook/CMakeLists.txt b/examples/interfaceframework/qface-addressbook/CMakeLists.txt
index 4f9f70ef..68e1a789 100644
--- a/examples/interfaceframework/qface-addressbook/CMakeLists.txt
+++ b/examples/interfaceframework/qface-addressbook/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(example_if_addressbook LANGUAGES CXX)
add_subdirectory(frontend)
diff --git a/examples/interfaceframework/qface-climate/CMakeLists.txt b/examples/interfaceframework/qface-climate/CMakeLists.txt
index 45fa4804..b4bc0201 100644
--- a/examples/interfaceframework/qface-climate/CMakeLists.txt
+++ b/examples/interfaceframework/qface-climate/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(example_if_climate LANGUAGES CXX)
add_subdirectory(frontend)
diff --git a/examples/interfaceframework/qface-remote/CMakeLists.txt b/examples/interfaceframework/qface-remote/CMakeLists.txt
index 60d58632..f2d42380 100644
--- a/examples/interfaceframework/qface-remote/CMakeLists.txt
+++ b/examples/interfaceframework/qface-remote/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(example_if_remote LANGUAGES CXX)
add_subdirectory(frontend)
diff --git a/examples/interfaceframework/qface-remote/demo/CMakeLists.txt b/examples/interfaceframework/qface-remote/demo/CMakeLists.txt
index 8a1b626f..61eac4c5 100644
--- a/examples/interfaceframework/qface-remote/demo/CMakeLists.txt
+++ b/examples/interfaceframework/qface-remote/demo/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from demo.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qface-remote LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/interfaceframework/qface-remote/frontend/CMakeLists.txt b/examples/interfaceframework/qface-remote/frontend/CMakeLists.txt
index 0b2342f8..fd773cb7 100644
--- a/examples/interfaceframework/qface-remote/frontend/CMakeLists.txt
+++ b/examples/interfaceframework/qface-remote/frontend/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from frontend.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(QtIfRemoteExample LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/interfaceframework/qface-remote/server_qtro/CMakeLists.txt b/examples/interfaceframework/qface-remote/server_qtro/CMakeLists.txt
index 185caee9..00fc85d8 100644
--- a/examples/interfaceframework/qface-remote/server_qtro/CMakeLists.txt
+++ b/examples/interfaceframework/qface-remote/server_qtro/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from server_qtro.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qface-remote-server LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/interfaceframework/qface-tutorial/CMakeLists.txt b/examples/interfaceframework/qface-tutorial/CMakeLists.txt
index a37f869d..dccdbbce 100644
--- a/examples/interfaceframework/qface-tutorial/CMakeLists.txt
+++ b/examples/interfaceframework/qface-tutorial/CMakeLists.txt
@@ -1,5 +1,5 @@
# Generated from qface-tutorial.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qface-tutorial LANGUAGES CXX)
add_subdirectory(instrument-cluster)
diff --git a/examples/interfaceframework/qface-tutorial/chapter1-basics/CMakeLists.txt b/examples/interfaceframework/qface-tutorial/chapter1-basics/CMakeLists.txt
index 4fa5f5b7..56113303 100644
--- a/examples/interfaceframework/qface-tutorial/chapter1-basics/CMakeLists.txt
+++ b/examples/interfaceframework/qface-tutorial/chapter1-basics/CMakeLists.txt
@@ -1,5 +1,5 @@
# Generated from chapter1-basics.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qface-chapter1 LANGUAGES CXX)
add_subdirectory(instrument-cluster)
diff --git a/examples/interfaceframework/qface-tutorial/chapter2-enums-structs/CMakeLists.txt b/examples/interfaceframework/qface-tutorial/chapter2-enums-structs/CMakeLists.txt
index 24432c4c..02ff4c61 100644
--- a/examples/interfaceframework/qface-tutorial/chapter2-enums-structs/CMakeLists.txt
+++ b/examples/interfaceframework/qface-tutorial/chapter2-enums-structs/CMakeLists.txt
@@ -1,5 +1,5 @@
# Generated from chapter2-enums-structs.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qface-chapter2 LANGUAGES CXX)
add_subdirectory(instrument-cluster)
diff --git a/examples/interfaceframework/qface-tutorial/chapter3-simulation-backend/CMakeLists.txt b/examples/interfaceframework/qface-tutorial/chapter3-simulation-backend/CMakeLists.txt
index b11f3db8..cb82c79a 100644
--- a/examples/interfaceframework/qface-tutorial/chapter3-simulation-backend/CMakeLists.txt
+++ b/examples/interfaceframework/qface-tutorial/chapter3-simulation-backend/CMakeLists.txt
@@ -1,5 +1,5 @@
# Generated from chapter3-simulation-backend.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qface-chapter3 LANGUAGES CXX)
add_subdirectory(instrument-cluster)
diff --git a/examples/interfaceframework/qface-tutorial/chapter4-simulation-behavior/CMakeLists.txt b/examples/interfaceframework/qface-tutorial/chapter4-simulation-behavior/CMakeLists.txt
index 9c88538f..5f8862fa 100644
--- a/examples/interfaceframework/qface-tutorial/chapter4-simulation-behavior/CMakeLists.txt
+++ b/examples/interfaceframework/qface-tutorial/chapter4-simulation-behavior/CMakeLists.txt
@@ -1,5 +1,5 @@
# Generated from chapter4-simulation-behavior.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qface-chapter4 LANGUAGES CXX)
add_subdirectory(instrument-cluster)
diff --git a/examples/interfaceframework/qface-tutorial/chapter5-ipc/CMakeLists.txt b/examples/interfaceframework/qface-tutorial/chapter5-ipc/CMakeLists.txt
index bd723957..7d47b1d8 100644
--- a/examples/interfaceframework/qface-tutorial/chapter5-ipc/CMakeLists.txt
+++ b/examples/interfaceframework/qface-tutorial/chapter5-ipc/CMakeLists.txt
@@ -1,5 +1,5 @@
# Generated from chapter5-ipc.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qface-chapter5 LANGUAGES CXX)
add_subdirectory(instrument-cluster)
diff --git a/examples/interfaceframework/qface-tutorial/chapter6-own-backend/CMakeLists.txt b/examples/interfaceframework/qface-tutorial/chapter6-own-backend/CMakeLists.txt
index 3d27a181..0f350db0 100644
--- a/examples/interfaceframework/qface-tutorial/chapter6-own-backend/CMakeLists.txt
+++ b/examples/interfaceframework/qface-tutorial/chapter6-own-backend/CMakeLists.txt
@@ -1,5 +1,5 @@
# Generated from chapter6-own-backend.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qface-chapter6 LANGUAGES CXX)
add_subdirectory(instrument-cluster)
diff --git a/examples/interfaceframework/qface-tutorial/chapter6-own-backend/frontend/CMakeLists.txt b/examples/interfaceframework/qface-tutorial/chapter6-own-backend/frontend/CMakeLists.txt
index 2e7b6af5..e9df120c 100644
--- a/examples/interfaceframework/qface-tutorial/chapter6-own-backend/frontend/CMakeLists.txt
+++ b/examples/interfaceframework/qface-tutorial/chapter6-own-backend/frontend/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from frontend.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(QtIfInstrumentCluster LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/examples/interfaceframework/qface-tutorial/instrument-cluster/CMakeLists.txt b/examples/interfaceframework/qface-tutorial/instrument-cluster/CMakeLists.txt
index eda72b69..9099e193 100644
--- a/examples/interfaceframework/qface-tutorial/instrument-cluster/CMakeLists.txt
+++ b/examples/interfaceframework/qface-tutorial/instrument-cluster/CMakeLists.txt
@@ -1,6 +1,6 @@
# Generated from instrument-cluster.pro.
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(instrument-cluster LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/tests/auto/core/ifcodegen/custom-template/extra-search-path/CMakeLists.txt b/tests/auto/core/ifcodegen/custom-template/extra-search-path/CMakeLists.txt
index 390401c1..cd097c15 100644
--- a/tests/auto/core/ifcodegen/custom-template/extra-search-path/CMakeLists.txt
+++ b/tests/auto/core/ifcodegen/custom-template/extra-search-path/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(tst_template_extra_search_path LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/tests/auto/core/ifcodegen/custom-template/full-path/CMakeLists.txt b/tests/auto/core/ifcodegen/custom-template/full-path/CMakeLists.txt
index 8c09cdef..b68b8e93 100644
--- a/tests/auto/core/ifcodegen/custom-template/full-path/CMakeLists.txt
+++ b/tests/auto/core/ifcodegen/custom-template/full-path/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(tst_template_full_path LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
diff --git a/tests/auto/core/ifcodegen/custom-template/global-search-path/CMakeLists.txt b/tests/auto/core/ifcodegen/custom-template/global-search-path/CMakeLists.txt
index 21a4db47..6a1a3d67 100644
--- a/tests/auto/core/ifcodegen/custom-template/global-search-path/CMakeLists.txt
+++ b/tests/auto/core/ifcodegen/custom-template/global-search-path/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(tst_template_global_search_path LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)