mirror of
https://github.com/sfsam/Itsycal.git
synced 2026-04-07 19:17:34 +00:00
e94187cb86
Set project-level build settings to sign-to-run-locally defaults so the project builds out of the box without a Local.xcconfig. Remove signing settings from target-level build settings entirely so Local.xcconfig can override them cleanly. Update Local.xcconfig.example to reflect all required keys for both options.
28 lines
959 B
Plaintext
28 lines
959 B
Plaintext
// Local.xcconfig.example
|
|
//
|
|
// Copy this file to Local.xcconfig in the project root and fill in
|
|
// your own values.
|
|
//
|
|
// Local.xcconfig is gitignored and must never be committed.
|
|
//
|
|
// Option 1 — Build locally without an Apple Developer account:
|
|
// Leave DEVELOPMENT_TEAM empty and use Automatic signing.
|
|
// Xcode will sign the app for local use only.
|
|
//
|
|
// Option 2 — Build with your own Apple Developer account:
|
|
// Set DEVELOPMENT_TEAM to your 10-character team ID (found at
|
|
// developer.apple.com under Membership) and use Manual signing.
|
|
|
|
// Option 1 - No Apple Developer account (local builds only)
|
|
DEVELOPMENT_TEAM =
|
|
CODE_SIGN_IDENTITY = -
|
|
CODE_SIGN_STYLE = Automatic
|
|
ENABLE_HARDENED_RUNTIME = NO
|
|
|
|
// Option 2 - Your Apple Developer account
|
|
// Uncomment the lines below and comment out the lines above.
|
|
// DEVELOPMENT_TEAM = XXXXXXXXXX
|
|
// CODE_SIGN_IDENTITY = Apple Development
|
|
// CODE_SIGN_STYLE = Manual
|
|
// ENABLE_HARDENED_RUNTIME = YES
|