sudara / pamplejuce

A JUCE audio plugin template. JUCE 7, Catch2, Pluginval, macOS notarization, Azure Trusted Signing, Github Actions
https://melatonin.dev/blog/
MIT License
394 stars 37 forks source link

MacOS deployment target issue #6

Closed jacobweber closed 2 years ago

jacobweber commented 2 years ago

Thanks for this template -- it's very helpful.

When I ran the Standalone app on Mac OS 10.14.6., I got the error: You have macOS %@. The application requires macOS %@ or later. Not sure what's up with the version string there. But adding this to the top of CMakeLists.txt fixed it:

set(CMAKE_OSX_DEPLOYMENT_TARGET "10.13" CACHE STRING "Minimum OS X deployment version")
sudara commented 2 years ago

@jacobweber Thanks for this! I'm guilty of not having tried to build the standalone on this repo, I appreciate the contribution.