2019-10-12 14:48:34 +02:00
|
|
|
CODE_SIGN_IDENTITY= iPhone Developer
|
2019-10-01 06:29:35 +02:00
|
|
|
DEVELOPMENT_TEAM = M8L2WTLA8W
|
2019-07-29 00:24:57 +02:00
|
|
|
CODE_SIGN_STYLE = Automatic
|
2019-10-01 06:18:27 +02:00
|
|
|
ORGANIZATION_IDENTIFIER = com.ranchero
|
2019-04-16 00:56:59 +02:00
|
|
|
PROVISIONING_PROFILE_SPECIFIER =
|
|
|
|
|
|
|
|
// 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 23:45:18 +02:00
|
|
|
// CODE_SIGN_IDENTITY[sdk=macosx*] = Mac Developer
|
|
|
|
// CODE_SIGN_IDENTITY[sdk=iphoneos*] = iPhone Developer
|
|
|
|
// CODE_SIGN_IDENTITY[sdk=iphonesimulator*] = iPhone Developer
|
2019-04-16 00:56:59 +02:00
|
|
|
// DEVELOPMENT_TEAM = <Your Team ID>
|
2019-09-19 18:23:57 +02:00
|
|
|
// BUNDLE_ROOT = <Your Domain Name Reversed>
|
2019-04-16 00:56:59 +02:00
|
|
|
// CODE_SIGN_STYLE = Automatic
|
|
|
|
// PROVISIONING_PROFILE_SPECIFIER =
|
|
|
|
//
|
|
|
|
// And you should be able to build without code signing errors and without modifying
|
|
|
|
// the NetNewsWire Xcode project.
|
|
|
|
//
|
|
|
|
// Example: if your NetNewsWire Xcode project file is at
|
|
|
|
// /Users/Shared/git/NetNewsWire/NetNewsWire.xcodeproj
|
|
|
|
// create your DeveloperSettings.xcconfig file at
|
|
|
|
// /Users/Shared/git/SharedXcodeSettings/DeveloperSettings.xcconfig
|
|
|
|
//
|
|
|
|
|
2019-09-24 15:41:00 +02:00
|
|
|
#include? "../../SharedXcodeSettings/ProjectSettings.xcconfig"
|
2019-04-16 00:56:59 +02:00
|
|
|
#include? "../../SharedXcodeSettings/DeveloperSettings.xcconfig"
|
2019-10-21 00:26:52 +02:00
|
|
|
#include "./common/NetNewsWire_ios_target_common.xcconfig"
|
2019-07-29 00:24:57 +02:00
|
|
|
|
2019-08-02 03:47:46 +02:00
|
|
|
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks
|
2019-07-28 06:36:29 +02:00
|
|
|
INFOPLIST_FILE = iOS/Resources/Info.plist
|
2019-09-19 18:23:57 +02:00
|
|
|
CODE_SIGN_ENTITLEMENTS = iOS/Resources/NetNewsWire.entitlements
|
|
|
|
PRODUCT_BUNDLE_IDENTIFIER = $(ORGANIZATION_IDENTIFIER).NetNewsWire.iOS
|
2019-07-28 06:36:29 +02:00
|
|
|
PRODUCT_NAME = NetNewsWire
|