Skip to content

Commit

Permalink
Updates the SnapAndRun iPhone app so that it builds with Xcode 4.
Browse files Browse the repository at this point in the history
This essentially changes the libObjectiveFlickr.a target to use only the
current iOS SDK -- no longer a Mac project. This doesn't affect the
ObjectiveFlickr.framework target, which is still a Mac project.

Also, SnapAndrun now uses the current iOS SDK, instead of fixing on iOS 4 SDK.
  • Loading branch information
lukhnos committed Apr 19, 2011
1 parent 0a52f59 commit 0d2ef87
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ build
*.tm_build_errors
.DS_Store
SampleAPIKey.h
xcuserdata
*.xcworkspace
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@
INFOPLIST_FILE = "SnapAndRun-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 3.2;
PRODUCT_NAME = SnapAndRun;
SDKROOT = iphoneos4.0;
SDKROOT = iphoneos;
};
name = Debug;
};
Expand All @@ -290,7 +290,7 @@
INFOPLIST_FILE = "SnapAndRun-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 3.2;
PRODUCT_NAME = SnapAndRun;
SDKROOT = iphoneos4.0;
SDKROOT = iphoneos;
};
name = Release;
};
Expand Down
2 changes: 2 additions & 0 deletions ObjectiveFlickr.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,7 @@
PREBINDING = NO;
PRODUCT_NAME = ObjectiveFlickr;
RUN_CLANG_STATIC_ANALYZER = NO;
SDKROOT = iphoneos;
};
name = Debug;
};
Expand All @@ -471,6 +472,7 @@
PREBINDING = NO;
PRODUCT_NAME = ObjectiveFlickr;
RUN_CLANG_STATIC_ANALYZER = NO;
SDKROOT = iphoneos;
ZERO_LINK = NO;
};
name = Release;
Expand Down

0 comments on commit 0d2ef87

Please sign in to comment.