mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Add a temporary workaround to allow public projects to build using Xcode 15
To prevent too much disruption to people who have our public projects as part of their build or testing systems we are temporarily ignoring a warning about using Xcode 15.
This commit is contained in:
parent
f5c2e1d836
commit
aaeec5c12d
19 changed files with 77 additions and 14 deletions
|
|
@ -34,7 +34,11 @@ if(JUCE_BUILD_HELPER_TOOLS)
|
|||
|
||||
target_compile_definitions(juceaide PRIVATE
|
||||
JUCE_DISABLE_JUCE_VERSION_PRINTING=1
|
||||
JUCE_USE_CURL=0)
|
||||
JUCE_USE_CURL=0
|
||||
# This is a temporary workaround to allow builds to complete on Xcode 15.
|
||||
# Add -Wl,-ld_classic to the OTHER_LDFLAGS build setting if you need to
|
||||
# deploy to older versions of macOS.
|
||||
JUCE_SILENCE_XCODE_15_LINKER_WARNING=1)
|
||||
|
||||
target_link_libraries(juceaide PRIVATE
|
||||
juce::juce_build_tools
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue