Files
Itsycal/Local.xcconfig.example
Sanjay e94187cb86 Fix signing so contributors can build w/o setup
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.
2026-03-13 06:48:15 -07:00

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