85589f2627
Apple Development cert + Automatic signing makes Xcode demand a Mac Development cert that no one has. Switch to manual ad-hoc (CODE_SIGN_IDENTITY = -) so any contributor can build. Drop hardened runtime; re-enable for distribution builds.
9 lines
268 B
Plaintext
9 lines
268 B
Plaintext
#include? "Local.xcconfig"
|
|
|
|
MACOSX_DEPLOYMENT_TARGET = 15.0
|
|
SWIFT_VERSION = 5.10
|
|
// Manual ad-hoc signing for local dev (no Apple Mac Development cert
|
|
// required). Override here or via target settings for distribution.
|
|
CODE_SIGN_STYLE = Manual
|
|
CODE_SIGN_IDENTITY = -
|