Browse Source

Projucer (Xcode): Code-sign using the expanded code sign identity

v7.0.12
Anthony Nicholls 1 year ago
parent
commit
26b817b7a4
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h

+ 2
- 1
extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h View File

@@ -2592,8 +2592,9 @@ private:
const auto codesignScript = ScriptBuilder{}
.ifSet ("CODE_SIGN_ENTITLEMENTS",
R"(entitlementsArg=(--entitlements "${CODE_SIGN_ENTITLEMENTS}"))")
.echo ("Signing Identity: " + doubleQuoted ("${EXPANDED_CODE_SIGN_IDENTITY_NAME}") )
.run ("codesign --verbose=4 --force --sign",
doubleQuoted ("${CODE_SIGN_IDENTITY:--}"),
doubleQuoted ("${EXPANDED_CODE_SIGN_IDENTITY}"),
"${entitlementsArg[*]-}",
"${OTHER_CODE_SIGN_FLAGS-}",
doubleQuoted (installPath + objectToSignTail));


Loading…
Cancel
Save