aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2023-12-21 14:36:16 +0100
committerShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2024-03-13 13:58:45 +0100
commit0632caba93a17eb429fa2c7153f7fa4005542ce6 (patch)
treeb11794de60ff3dcf97bd8da5f94c2b8547e067fb
parent28fcd3acf83ba1ab24f062b18b314df5b64eda46 (diff)
Android Deployment: CMake Version Update
- 3.18 to 3.23 - This is strict requirement since the binaries are linked to Python 3.11 and Python 3.11 is only supported from CMake 3.23 onwards - https://github.com/Kitware/CMake/blob/v3.23.0/Modules/FindPython/Support.cmake Fixes: PYSIDE-2553 Task-number: PYSIDE-1612 Change-Id: I8b7d4b825f03eb40f0a9059d6a4b31329f6ea06f Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
-rw-r--r--tools/cross_compile_android/templates/toolchain_default.tmpl.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/cross_compile_android/templates/toolchain_default.tmpl.cmake b/tools/cross_compile_android/templates/toolchain_default.tmpl.cmake
index a691d50f2..3c9752f43 100644
--- a/tools/cross_compile_android/templates/toolchain_default.tmpl.cmake
+++ b/tools/cross_compile_android/templates/toolchain_default.tmpl.cmake
@@ -2,7 +2,7 @@
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
# toolchain file to cross compile Qt for Python wheels for Android
-cmake_minimum_required(VERSION 3.18)
+cmake_minimum_required(VERSION 3.23)
include_guard(GLOBAL)
set(CMAKE_SYSTEM_NAME Android)
{% if plat_name == "armv7a" -%}