diff options
author | Michal Klocek <michal.klocek@qt.io> | 2021-03-05 09:54:20 +0100 |
---|---|---|
committer | Michal Klocek <michal.klocek@qt.io> | 2021-05-22 14:10:13 +0200 |
commit | bd2e13ef62510b547cc07729cfa024a75987bee2 (patch) | |
tree | 29710c63c3fb8b73d833fbd6e6f8416cb8474fb1 /src | |
parent | 97dcbd4019456b9a1c567faddb0521b7505d80fc (diff) | |
download | qtwebengine-bd2e13ef62510b547cc07729cfa024a75987bee2.tar.gz |
Bump the minimum required cmake version to 3.19
QtWebEngine requires support of TARGET_PROPERTY for genex in
gn template generation to dump all compilation flags.
This is supported since version 3.19, set examples to 3.16 as
rest of the qt.
Task-number: QTBUG-91760
Change-Id: Ifa5903c8c6efcb160db05baf1e18c865b48bcf39
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/core/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/gn/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/ninja/CMakeLists.txt | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e9b445135..d8c587034 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.18.0) +cmake_minimum_required(VERSION 3.19) if(NOT DEFINED WEBENGINE_ROOT_SOURCE_DIR) get_filename_component(WEBENGINE_ROOT_SOURCE_DIR "${CMAKE_CURRENT_LIST_DIR}/.." ABSOLUTE) diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 77aab9364..a8f377632 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.18.0) +cmake_minimum_required(VERSION 3.19) if(NOT DEFINED WEBENGINE_ROOT_SOURCE_DIR) get_filename_component(WEBENGINE_ROOT_SOURCE_DIR "${CMAKE_CURRENT_LIST_DIR}/../.." ABSOLUTE) diff --git a/src/gn/CMakeLists.txt b/src/gn/CMakeLists.txt index 9e98e152b..d26ce2a62 100644 --- a/src/gn/CMakeLists.txt +++ b/src/gn/CMakeLists.txt @@ -1,5 +1,5 @@ -cmake_minimum_required(VERSION 3.18.0) +cmake_minimum_required(VERSION 3.19) project(Gn DESCRIPTION "Meta-build system" diff --git a/src/ninja/CMakeLists.txt b/src/ninja/CMakeLists.txt index 1ac89df5a..f7ece52d4 100644 --- a/src/ninja/CMakeLists.txt +++ b/src/ninja/CMakeLists.txt @@ -1,5 +1,5 @@ -cmake_minimum_required(VERSION 3.18.0) +cmake_minimum_required(VERSION 3.19) project(Ninja DESCRIPTION "Ninja Build Tool" |