-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for iPhone 5 resolution.
Update compile flags.
- Loading branch information
1 parent
62434bf
commit 1afb9e9
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
objects = { | ||
|
||
/* Begin PBXBuildFile section */ | ||
B601E92616E6B6DB009A714F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = B601E92516E6B6DB009A714F /* [email protected] */; }; | ||
B671A914158C21DE0088D99C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B671A913158C21DE0088D99C /* UIKit.framework */; }; | ||
B671A916158C21DE0088D99C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B671A915158C21DE0088D99C /* Foundation.framework */; }; | ||
B671A918158C21DE0088D99C /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B671A917158C21DE0088D99C /* CoreGraphics.framework */; }; | ||
|
@@ -19,6 +20,7 @@ | |
/* End PBXBuildFile section */ | ||
|
||
/* Begin PBXFileReference section */ | ||
B601E92516E6B6DB009A714F /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; | ||
B671A90F158C21DE0088D99C /* PushBackAnimation.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PushBackAnimation.app; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
B671A913158C21DE0088D99C /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; | ||
B671A915158C21DE0088D99C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; | ||
|
@@ -53,6 +55,7 @@ | |
B671A904158C21DE0088D99C = { | ||
isa = PBXGroup; | ||
children = ( | ||
B601E92516E6B6DB009A714F /* [email protected] */, | ||
B671A919158C21DE0088D99C /* PushBackAnimation */, | ||
B671A912158C21DE0088D99C /* Frameworks */, | ||
B671A910158C21DE0088D99C /* Products */, | ||
|
@@ -128,7 +131,7 @@ | |
B671A906158C21DE0088D99C /* Project object */ = { | ||
isa = PBXProject; | ||
attributes = { | ||
LastUpgradeCheck = 0430; | ||
LastUpgradeCheck = 0460; | ||
}; | ||
buildConfigurationList = B671A909158C21DE0088D99C /* Build configuration list for PBXProject "PushBackAnimation" */; | ||
compatibilityVersion = "Xcode 3.2"; | ||
|
@@ -154,6 +157,7 @@ | |
files = ( | ||
B671A91E158C21DE0088D99C /* InfoPlist.strings in Resources */, | ||
B6C0B981158C228F008BA973 /* MainView.xib in Resources */, | ||
B601E92616E6B6DB009A714F /* [email protected] in Resources */, | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
|
@@ -189,6 +193,10 @@ | |
buildSettings = { | ||
ALWAYS_SEARCH_USER_PATHS = NO; | ||
ARCHS = "$(ARCHS_STANDARD_32_BIT)"; | ||
CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
CLANG_WARN_ENUM_CONVERSION = YES; | ||
CLANG_WARN_INT_CONVERSION = YES; | ||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; | ||
COPY_PHASE_STRIP = NO; | ||
GCC_C_LANGUAGE_STANDARD = gnu99; | ||
|
@@ -213,6 +221,10 @@ | |
buildSettings = { | ||
ALWAYS_SEARCH_USER_PATHS = NO; | ||
ARCHS = "$(ARCHS_STANDARD_32_BIT)"; | ||
CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
CLANG_WARN_ENUM_CONVERSION = YES; | ||
CLANG_WARN_INT_CONVERSION = YES; | ||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; | ||
COPY_PHASE_STRIP = YES; | ||
GCC_C_LANGUAGE_STANDARD = gnu99; | ||
|