From e2c4a1669e5b6496d52e2f55a94bd7d4f4469b98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Arne=20Vestb=C3=B8?= Date: Fri, 6 Sep 2024 10:17:53 +0200 Subject: [PATCH] Restore support for iOS 16 for Qt 6.8 Our general strategy is to support the latest two iOS releases, as most people upgrade their iOS devices quite aggressively. But given that iOS 18 is not out yet, and that people still spend some time upgrading once it's out, we don't want to be in a situation where we effectively only support iOS 17. Fixes: QTBUG-128678 Pick-to: 6.8 Change-Id: I959794944807e5b6b5e56f22d3c57977bc4f2aee Reviewed-by: Doris Verria --- cmake/QtAutoDetectHelpers.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/QtAutoDetectHelpers.cmake b/cmake/QtAutoDetectHelpers.cmake index 167c0c89e18..2b8152ec75f 100644 --- a/cmake/QtAutoDetectHelpers.cmake +++ b/cmake/QtAutoDetectHelpers.cmake @@ -257,7 +257,7 @@ function(qt_auto_detect_apple) # macOS set(version "12.0") elseif(CMAKE_SYSTEM_NAME STREQUAL iOS) - set(version "17.0") + set(version "16.0") endif() if(version) set(CMAKE_OSX_DEPLOYMENT_TARGET "${version}" CACHE STRING "${description}")