summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2021-09-22 15:54:34 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2021-09-22 19:52:08 +0200
commit68a1bde401e5e20d5ac800cc2ff435b28c57caad (patch)
treecfd3b80080ddec1a693cb5d85adcba67c4e8d9a5 /tests
parentae5a9c4021386380c30d2dffa26650a8df878544 (diff)
downloadqtactiveqt-68a1bde401e5e20d5ac800cc2ff435b28c57caad.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: I5d8b0e42bd149e5f88326baa4b1f28a5f37e4ec2 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/cmake/CMakeLists.txt2
-rw-r--r--tests/auto/cmake/test_modules/container/CMakeLists.txt2
-rw-r--r--tests/auto/cmake/test_modules/server/CMakeLists.txt2
-rw-r--r--tests/auto/cmake/test_target_typelibs/CMakeLists.txt2
-rw-r--r--tests/auto/cmake/test_target_typelibs_absolute/CMakeLists.txt2
-rw-r--r--tests/auto/cmake/test_target_typelibs_empty_libs/CMakeLists.txt2
-rw-r--r--tests/auto/cmake/test_target_typelibs_non_existing_libs/CMakeLists.txt2
-rw-r--r--tests/auto/cmake/test_target_typelibs_out_dir/CMakeLists.txt2
8 files changed, 8 insertions, 8 deletions
diff --git a/tests/auto/cmake/CMakeLists.txt b/tests/auto/cmake/CMakeLists.txt
index 8be2a8b..056c867 100644
--- a/tests/auto/cmake/CMakeLists.txt
+++ b/tests/auto/cmake/CMakeLists.txt
@@ -1,5 +1,5 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(qtactivetqt_cmake_tests)
diff --git a/tests/auto/cmake/test_modules/container/CMakeLists.txt b/tests/auto/cmake/test_modules/container/CMakeLists.txt
index 124e065..28cb00b 100644
--- a/tests/auto/cmake/test_modules/container/CMakeLists.txt
+++ b/tests/auto/cmake/test_modules/container/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(cmake_axcontainer)
diff --git a/tests/auto/cmake/test_modules/server/CMakeLists.txt b/tests/auto/cmake/test_modules/server/CMakeLists.txt
index 255b13d..7a222a8 100644
--- a/tests/auto/cmake/test_modules/server/CMakeLists.txt
+++ b/tests/auto/cmake/test_modules/server/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(cmake_axserver)
diff --git a/tests/auto/cmake/test_target_typelibs/CMakeLists.txt b/tests/auto/cmake/test_target_typelibs/CMakeLists.txt
index 44ce88f..f6d7028 100644
--- a/tests/auto/cmake/test_target_typelibs/CMakeLists.txt
+++ b/tests/auto/cmake/test_target_typelibs/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(tst_typelibs)
find_package(Qt6 COMPONENTS AxContainer Gui Widgets CONFIG REQUIRED)
diff --git a/tests/auto/cmake/test_target_typelibs_absolute/CMakeLists.txt b/tests/auto/cmake/test_target_typelibs_absolute/CMakeLists.txt
index f8455fa..8d198a4 100644
--- a/tests/auto/cmake/test_target_typelibs_absolute/CMakeLists.txt
+++ b/tests/auto/cmake/test_target_typelibs_absolute/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(tst_typelibs)
find_package(Qt6 COMPONENTS AxContainer Gui Widgets CONFIG REQUIRED)
diff --git a/tests/auto/cmake/test_target_typelibs_empty_libs/CMakeLists.txt b/tests/auto/cmake/test_target_typelibs_empty_libs/CMakeLists.txt
index 1bbeed7..ba2c1d2 100644
--- a/tests/auto/cmake/test_target_typelibs_empty_libs/CMakeLists.txt
+++ b/tests/auto/cmake/test_target_typelibs_empty_libs/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(tst_typelibs)
find_package(Qt6 COMPONENTS AxContainer Gui Widgets CONFIG REQUIRED)
diff --git a/tests/auto/cmake/test_target_typelibs_non_existing_libs/CMakeLists.txt b/tests/auto/cmake/test_target_typelibs_non_existing_libs/CMakeLists.txt
index 448732a..15a2a1d 100644
--- a/tests/auto/cmake/test_target_typelibs_non_existing_libs/CMakeLists.txt
+++ b/tests/auto/cmake/test_target_typelibs_non_existing_libs/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(tst_typelibs)
find_package(Qt6 COMPONENTS AxContainer Gui Widgets CONFIG REQUIRED)
diff --git a/tests/auto/cmake/test_target_typelibs_out_dir/CMakeLists.txt b/tests/auto/cmake/test_target_typelibs_out_dir/CMakeLists.txt
index 66e753e..2c92d44 100644
--- a/tests/auto/cmake/test_target_typelibs_out_dir/CMakeLists.txt
+++ b/tests/auto/cmake/test_target_typelibs_out_dir/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.16)
project(tst_typelibs)
find_package(Qt6 COMPONENTS AxContainer Gui Widgets CONFIG REQUIRED)