mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-17 20:10:32 +01:00
31bd9d918c
Also, added support for accessing feeds directly from the top level container, essentially skipping account as a hierarchy level. With this change, a script like tell app “Evergreen” title of every article of feed "Six Colors" where read is true end tell produces the expected result.
39 lines
1.5 KiB
Plaintext
39 lines
1.5 KiB
Plaintext
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
|
|
// the Evergreen Xcode project.
|
|
//
|
|
// Example: if your Evergreen Xcode project file is at
|
|
// /Users/Shared/git/Evergreen/Evergreen.xcodeproj
|
|
// create your DeveloperSettings.xcconfig file at
|
|
// /Users/Shared/git/SharedXcodeSettings/DeveloperSettings.xcconfig
|
|
//
|
|
|
|
#include? "../../SharedXcodeSettings/DeveloperSettings.xcconfig"
|
|
|
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
|
|
COMBINE_HIDPI_IMAGES = YES
|
|
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/../Frameworks
|
|
INFOPLIST_FILE = Evergreen/Info.plist
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.ranchero.Evergreen
|
|
PRODUCT_NAME = $(TARGET_NAME)
|
|
FRAMEWORK_SEARCH_PATHS = $(inherited) $(PROJECT_DIR)/Frameworks/Vendor
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
|