| | |
| | | SWIFT_DIR="$PROJECT_DIR/Apptag" |
| | | |
| | | SDK_PATH=$(xcrun --sdk macosx --show-sdk-path) |
| | | TARGET="arm64-apple-macosx26.0" |
| | | TARGET="arm64-apple-macosx15.0" |
| | | |
| | | # --- Optional: App Store / Sandbox signing --- |
| | | # Set CODESIGN_IDENTITY to your "Apple Distribution" or "Mac Developer" cert name. |
| | |
| | | if [ -z "$CODESIGN_IDENTITY" ]; then |
| | | echo "⚠️ APP_STORE=1 but CODESIGN_IDENTITY not set. Will ad-hoc sign with entitlements." |
| | | fi |
| | | if [ ! -f "$ENTITLEMENTS" ]; then |
| | | echo "❌ APP_STORE=1 requires entitlements at: $ENTITLEMENTS" |
| | | exit 1 |
| | | fi |
| | | fi |
| | | |
| | | echo "==> Cleaning..." |