1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

CMake: Force adhoc signing

Now that VST3 builds are signed before and after manifest generation, it
may be necessary to force-sign in order to overwrite the
previously-applied signature.
This commit is contained in:
reuk 2023-10-31 13:48:38 +00:00
parent c456f67c3f
commit 2843549fcb
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -33,5 +33,5 @@ execute_process(
if(result)
message(STATUS "Replacing invalid signature with ad-hoc signature")
execute_process(COMMAND "${JUCE_XCRUN}" codesign -s - "${src}")
execute_process(COMMAND "${JUCE_XCRUN}" codesign -f -s - "${src}")
endif()