2019-07-29 04:09:20 +02:00
|
|
|
CODE_SIGN_IDENTITY[Config=Release] = Developer ID Application
|
|
|
|
CODE_SIGN_IDENTITY[Config=Debug] = -
|
|
|
|
DEVELOPMENT_TEAM[Config=Release] = M8L2WTLA8W
|
2018-01-08 02:46:23 +01:00
|
|
|
CODE_SIGN_STYLE = Manual
|
|
|
|
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
|
2018-01-08 02:46:23 +01:00
|
|
|
// DEVELOPMENT_TEAM = <Your Team ID>
|
|
|
|
// CODE_SIGN_STYLE = Automatic
|
|
|
|
// PROVISIONING_PROFILE_SPECIFIER =
|
|
|
|
//
|
|
|
|
// And you should be able to build without code signing errors and without modifying
|
2018-08-29 07:18:24 +02:00
|
|
|
// the NetNewsWire Xcode project.
|
2018-01-08 02:46:23 +01:00
|
|
|
//
|
2018-08-29 07:18:24 +02:00
|
|
|
// Example: if your NetNewsWire Xcode project file is at
|
|
|
|
// /Users/Shared/git/NetNewsWire/NetNewsWire.xcodeproj
|
2018-01-08 02:46:23 +01:00
|
|
|
// create your DeveloperSettings.xcconfig file at
|
|
|
|
// /Users/Shared/git/SharedXcodeSettings/DeveloperSettings.xcconfig
|
|
|
|
//
|
|
|
|
|
2018-01-24 09:06:34 +01:00
|
|
|
#include? "../../SharedXcodeSettings/DeveloperSettings.xcconfig"
|
2018-01-08 02:46:23 +01:00
|
|
|
|
2019-07-29 00:24:57 +02:00
|
|
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
|
2019-07-28 23:45:18 +02:00
|
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
|
2019-07-29 00:24:57 +02:00
|
|
|
CODE_SIGN_ENTITLEMENTS = Mac/Resources/NetNewsWire.entitlements
|
2018-01-08 02:46:23 +01:00
|
|
|
COMBINE_HIDPI_IMAGES = YES
|
2019-07-28 23:45:18 +02:00
|
|
|
FRAMEWORK_SEARCH_PATHS = $(inherited) $(PROJECT_DIR)/Frameworks/Vendor
|
2019-07-29 00:24:57 +02:00
|
|
|
INFOPLIST_FILE = Mac/Resources/Info.plist
|
2019-07-28 23:45:18 +02:00
|
|
|
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/../Frameworks
|
2019-07-29 00:24:57 +02:00
|
|
|
MACOSX_DEPLOYMENT_TARGET = 10.14.4
|
2018-08-29 07:18:24 +02:00
|
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.ranchero.NetNewsWire-Evergreen
|
2019-07-29 00:24:57 +02:00
|
|
|
PRODUCT_NAME = NetNewsWire
|