2018-01-08 02:46:23 +01:00
|
|
|
CODE_SIGN_IDENTITY = Developer ID Application
|
|
|
|
DEVELOPMENT_TEAM = M8L2WTLA8W
|
|
|
|
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
|
|
|
|
//
|
|
|
|
// CODE_SIGN_IDENTITY = Mac Developer
|
|
|
|
// 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-09-06 20:52:03 +02:00
|
|
|
// High Level Settings common to both the Mac application and any extensions we bundle with it
|
2019-09-14 20:08:34 +02:00
|
|
|
MARKETING_VERSION = 5.0.2
|
|
|
|
CURRENT_PROJECT_VERSION = 2615
|
2019-09-06 20:52:03 +02:00
|
|
|
|
2018-01-08 02:46:23 +01:00
|
|
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
|
|
|
|
COMBINE_HIDPI_IMAGES = YES
|
|
|
|
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/../Frameworks
|
2018-08-29 07:18:24 +02:00
|
|
|
INFOPLIST_FILE = NetNewsWire/Info.plist
|
|
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.ranchero.NetNewsWire-Evergreen
|
2018-01-08 02:46:23 +01:00
|
|
|
PRODUCT_NAME = $(TARGET_NAME)
|
|
|
|
FRAMEWORK_SEARCH_PATHS = $(inherited) $(PROJECT_DIR)/Frameworks/Vendor
|
|
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
|