mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Platform: Remove build-time Apple SDK availability checks
This commit is contained in:
parent
5c1b75cab7
commit
b89553ae2c
10 changed files with 12 additions and 119 deletions
|
|
@ -161,10 +161,10 @@
|
|||
#endif
|
||||
|
||||
#if JUCE_MAC
|
||||
#if ! defined (MAC_OS_X_VERSION_10_14)
|
||||
#error "The 10.14 SDK (Xcode 10.1+) is required to build JUCE apps. You can create apps that run on macOS 10.9+ by changing the deployment target."
|
||||
#elif MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_9
|
||||
#error "Building for OSX 10.8 and earlier is no longer supported!"
|
||||
#if ! defined (MAC_OS_VERSION_11_1)
|
||||
#error "The macOS 11.1 SDK (Xcode 12.4+) is required to build JUCE apps. You can create apps that run on macOS 10.11+ by changing the deployment target."
|
||||
#elif MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_11
|
||||
#error "Building for OSX 10.10 and earlier is no longer supported!"
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue