2019-10-09 16:36:06 -05:00
|
|
|
CODE_SIGN_IDENTITY = Developer ID Application
|
2019-10-06 19:29:43 -05:00
|
|
|
DEVELOPMENT_TEAM = M8L2WTLA8W
|
2019-10-09 16:36:06 -05:00
|
|
|
CODE_SIGN_STYLE = Manual
|
2019-10-09 10:24:30 -05:00
|
|
|
ORGANIZATION_IDENTIFIER = com.ranchero
|
2019-10-09 23:35:50 -05:00
|
|
|
PROVISIONING_PROFILE_SPECIFIER = NetNewsWire
|
2020-03-22 21:11:29 -05:00
|
|
|
DEVELOPER_ENTITLEMENTS =
|
2018-01-07 17:46:23 -08:00
|
|
|
|
|
|
|
// developers can locally override the Xcode settings for code signing
|
|
|
|
// by creating a DeveloperSettings.xcconfig file locally at the appropriate path
|
|
|
|
// This allows a pristine project to have code signing set up with the appropriate
|
|
|
|
// developer ID and certificates, and for dev to be able to have local settings
|
|
|
|
// without needing to check in anything into source control
|
|
|
|
//
|
|
|
|
// As an example, make a ../../SharedXcodeSettings/DeveloperSettings.xcconfig file and
|
|
|
|
// give it the contents
|
|
|
|
//
|
2019-07-28 14:45:18 -07:00
|
|
|
// CODE_SIGN_IDENTITY[sdk=macosx*] = Mac Developer
|
|
|
|
// CODE_SIGN_IDENTITY[sdk=iphoneos*] = iPhone Developer
|
|
|
|
// CODE_SIGN_IDENTITY[sdk=iphonesimulator*] = iPhone Developer
|
2018-01-07 17:46:23 -08:00
|
|
|
// DEVELOPMENT_TEAM = <Your Team ID>
|
2019-09-19 11:23:57 -05:00
|
|
|
// ORGANIZATION_IDENTIFIER = <Your Domain Name Reversed>
|
2018-01-07 17:46:23 -08:00
|
|
|
// CODE_SIGN_STYLE = Automatic
|
2020-03-22 21:11:29 -05:00
|
|
|
// DEVELOPER_ENTITLEMENTS = -dev
|
2018-01-07 17:46:23 -08:00
|
|
|
// PROVISIONING_PROFILE_SPECIFIER =
|
|
|
|
//
|
|
|
|
// And you should be able to build without code signing errors and without modifying
|
2018-08-28 22:18:24 -07:00
|
|
|
// the NetNewsWire Xcode project.
|
2018-01-07 17:46:23 -08:00
|
|
|
//
|
2018-08-28 22:18:24 -07:00
|
|
|
// Example: if your NetNewsWire Xcode project file is at
|
|
|
|
// /Users/Shared/git/NetNewsWire/NetNewsWire.xcodeproj
|
2018-01-07 17:46:23 -08:00
|
|
|
// create your DeveloperSettings.xcconfig file at
|
|
|
|
// /Users/Shared/git/SharedXcodeSettings/DeveloperSettings.xcconfig
|
|
|
|
//
|
|
|
|
|
2018-01-24 00:06:34 -08:00
|
|
|
#include? "../../SharedXcodeSettings/DeveloperSettings.xcconfig"
|
2019-10-21 10:22:27 -04:00
|
|
|
#include "./common/NetNewsWire_macapp_target_common.xcconfig"
|
2018-01-07 17:46:23 -08:00
|
|
|
|
2020-03-22 21:11:29 -05:00
|
|
|
CODE_SIGN_ENTITLEMENTS = Mac/Resources/NetNewsWire$(DEVELOPER_ENTITLEMENTS).entitlements
|
2019-10-09 02:47:34 -04:00
|
|
|
PRODUCT_BUNDLE_IDENTIFIER = $(ORGANIZATION_IDENTIFIER).NetNewsWire-Evergreen
|
2019-10-21 10:22:27 -04:00
|
|
|
|