According to documentation minimal macos version must be 10.14. But for some reason it requires 10.15 to build.

This commit is contained in:
Roman Telezhynskyi 2023-02-17 20:18:53 +02:00
parent ef7e8f942c
commit 324be6e872

View file

@ -156,7 +156,9 @@ Module {
return "11.0";
// See page https://doc.qt.io/qt-6.4/supported-platforms.html
return "10.14"; // Qt 6.4 and above
// According to the documentation minimal version must be 10.14. But for some reason it requires 10.15 to
// build.
return "10.15"; // Qt 6.4 and above
}
if (Qt.core.versionMajor >= 5) {