summaryrefslogtreecommitdiff
path: root/tests/auto
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2021-09-22 16:23:03 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2021-09-22 19:37:15 +0200
commit5a2ebe329c1cce662d535dd652c8982c0c514ccb (patch)
tree6203509297d4ab415f88c1a0bbf769e499547ce1 /tests/auto
parentd9145878259e7b5dce0df3fb3566ec00fcb4ed57 (diff)
downloadqtwayland-5a2ebe329c1cce662d535dd652c8982c0c514ccb.tar.gz
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: I43575e48cb4ddb70b80f09e0432a2f88b01bec86 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/cmake/CMakeLists.txt2
-rw-r--r--tests/auto/cmake/test_waylandclient/CMakeLists.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/cmake/CMakeLists.txt b/tests/auto/cmake/CMakeLists.txt
index 270d11aa..53fc6b2a 100644
--- a/tests/auto/cmake/CMakeLists.txt
+++ b/tests/auto/cmake/CMakeLists.txt
@@ -1,5 +1,5 @@
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.16)
project(qmake_cmake_files)
diff --git a/tests/auto/cmake/test_waylandclient/CMakeLists.txt b/tests/auto/cmake/test_waylandclient/CMakeLists.txt
index 3788a492..d3dacc0f 100644
--- a/tests/auto/cmake/test_waylandclient/CMakeLists.txt
+++ b/tests/auto/cmake/test_waylandclient/CMakeLists.txt
@@ -1,6 +1,6 @@
project(test_plugins)
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.16)
cmake_policy(SET CMP0056 NEW)
find_package(Qt5WaylandClient REQUIRED)