Skip to content

Commit

Permalink
Increase the minimum macOS version to 10.15
Browse files Browse the repository at this point in the history
Qt 6.5 doesn't support 10.14 anymore, because it
uses std::filesystem.
QmlDesigner also wants to use std::filesystem.

Change-Id: I36c14c6efa439c9372eb0d8bf90d1024e8b532eb
Reviewed-by: Leena Miettinen <[email protected]>
Reviewed-by: Tim Jenssen <[email protected]>
  • Loading branch information
tjenssen committed Apr 4, 2023
1 parent 53ce5d6 commit c04f0e5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
QT_VERSION: 6.4.2
MACOS_DEPLOYMENT_TARGET: 10.14
MACOS_DEPLOYMENT_TARGET: 10.15
CLANG_VERSION: 16.0.0-rc2
ELFUTILS_VERSION: 0.175
CMAKE_VERSION: 3.21.1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The standalone binary packages support the following platforms:

* Windows 10 (64-bit) or later
* (K)Ubuntu Linux 20.04 (64-bit) or later
* macOS 10.14 or later
* macOS 10.15 or later

## Contributing

Expand All @@ -37,7 +37,7 @@ Prerequisites:

* Qt 6.2 or later. The Qt version that you use to build Qt Creator defines the
minimum platform versions that the result supports
(Windows 10, RHEL/CentOS 8.4, Ubuntu 20.04, macOS 10.14 for Qt 6.2).
(Windows 10, RHEL/CentOS 8.4, Ubuntu 20.04, macOS 10.15 for Qt 6.2).
* Qt WebEngine module for QtWebEngine based help viewer
* On Windows:
* MinGW with GCC 9 or Visual Studio 2019 or later
Expand Down
2 changes: 1 addition & 1 deletion coin/instructions/common_environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ instructions:
variableValue: "qt5compat qtbase qtdeclarative qtimageformats qtquick3d qtquickcontrols2 qtquicktimeline qtserialport qtshadertools qtsvg qttools qttranslations qtwebengine"
- type: EnvironmentVariable
variableName: MACOSX_DEPLOYMENT_TARGET
variableValue: 10.14
variableValue: 10.15
- type: EnvironmentVariable
variableName: QTC_SDKTOOL_QT_BASE_URL
variableValue: "http://ci-files02-hki.intra.qt.io/packages/jenkins/archive/qt/5.15/5.15.2-final-released/latest/src/submodules/qtbase-everywhere-src-5.15.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

\section1 macOS

\macos 10.14 or later is supported with the Xcode tools for your \macos
\macos 10.15 or later is supported with the Xcode tools for your \macos
version available in the Mac App Store.

\section1 Windows
Expand Down
2 changes: 1 addition & 1 deletion qtcreator.qbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import qbs.FileInfo
Project {
name: "Qt Creator"
minimumQbsVersion: "1.19.0"
property string minimumMacosVersion: "10.14"
property string minimumMacosVersion: "10.15"
property bool withAutotests: qbs.buildVariant === "debug"
property path ide_source_tree: path
property pathList additionalPlugins: []
Expand Down

0 comments on commit c04f0e5

Please sign in to comment.