-
Notifications
You must be signed in to change notification settings - Fork 238
Fixes 3572: macOS 13 runner is closing down #3579
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -173,6 +173,17 @@ win32 { | |
| } | ||
|
|
||
| } else:macx { | ||
| # Set minimum macOS deployment target | ||
| # For Qt 5: Support back to macOS 10.13 (High Sierra) for legacy builds on Intel | ||
| # For Qt 6: Support macOS 11 (Big Sur) and later for universal binaries | ||
| lessThan(QT_MAJOR_VERSION, 6) { | ||
| QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.13 | ||
| message(Qt5 build: Setting macOS deployment target to 10.13) | ||
| } else { | ||
| QMAKE_MACOSX_DEPLOYMENT_TARGET = 11.0 | ||
| message(Qt6 build: Setting macOS deployment target to 11.0) | ||
| } | ||
|
|
||
|
Comment on lines
+176
to
+186
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this needed?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Apparently it ensures Xcode knows which release we're targeting, otherwise it makes its own decision. (I think there was an issue with it trying to use Qt6 on pre-macOS 11. Or vice versa. It was definitely Qt related, hence being a QMake directive.) |
||
| contains(CONFIG, "server_bundle") { | ||
| message(The generated application bundle will run a server instance.) | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.