Skip to content

Commit

Permalink
Update project files to make library and sample work on iOS 4.0 and a…
Browse files Browse the repository at this point in the history
…bove.
  • Loading branch information
Lukhnos D. Liu committed Sep 11, 2010
1 parent fae2ddb commit 0a52f59
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
13 changes: 11 additions & 2 deletions Examples/SnapAndRun-iPhone/SnapAndRun.xcodeproj/project.pbxproj
Expand Up @@ -181,7 +181,14 @@
isa = PBXProject;
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "SnapAndRun" */;
compatibilityVersion = "Xcode 3.1";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
projectDirPath = "";
projectReferences = (
Expand Down Expand Up @@ -263,8 +270,9 @@
../../Source,
);
INFOPLIST_FILE = "SnapAndRun-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 3.2;
PRODUCT_NAME = SnapAndRun;
SDKROOT = iphoneos3.1.3;
SDKROOT = iphoneos4.0;
};
name = Debug;
};
Expand All @@ -280,8 +288,9 @@
../../Source,
);
INFOPLIST_FILE = "SnapAndRun-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 3.2;
PRODUCT_NAME = SnapAndRun;
SDKROOT = iphoneos3.1.3;
SDKROOT = iphoneos4.0;
};
name = Release;
};
Expand Down
12 changes: 12 additions & 0 deletions ObjectiveFlickr.xcodeproj/project.pbxproj
Expand Up @@ -237,7 +237,14 @@
isa = PBXProject;
buildConfigurationList = 6ABF72D40F939BB800B9179E /* Build configuration list for PBXProject "ObjectiveFlickr" */;
compatibilityVersion = "Xcode 3.1";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 6ABF72CF0F939BB800B9179E;
productRefGroup = 6ABF72E70F939BE600B9179E /* Products */;
projectDirPath = "";
Expand Down Expand Up @@ -327,6 +334,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = ObjectiveFlickr;
RUN_CLANG_STATIC_ANALYZER = NO;
};
name = Debug;
};
Expand Down Expand Up @@ -354,6 +362,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = ObjectiveFlickr;
RUN_CLANG_STATIC_ANALYZER = NO;
};
name = Release;
};
Expand Down Expand Up @@ -445,8 +454,10 @@
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
ONLY_ACTIVE_ARCH = YES;
PREBINDING = NO;
PRODUCT_NAME = ObjectiveFlickr;
RUN_CLANG_STATIC_ANALYZER = NO;
};
name = Debug;
};
Expand All @@ -459,6 +470,7 @@
GCC_ENABLE_FIX_AND_CONTINUE = NO;
PREBINDING = NO;
PRODUCT_NAME = ObjectiveFlickr;
RUN_CLANG_STATIC_ANALYZER = NO;
ZERO_LINK = NO;
};
name = Release;
Expand Down
2 changes: 1 addition & 1 deletion Source/OFXMLMapper.h
Expand Up @@ -29,7 +29,7 @@

extern NSString *const OFXMLTextContentKey;

#if MAC_OS_X_VERSION_10_6 && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6
#if (MAC_OS_X_VERSION_10_6 && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6) || (__IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_2_0)
@interface OFXMLMapper : NSObject <NSXMLParserDelegate>
#else
@interface OFXMLMapper : NSObject
Expand Down

0 comments on commit 0a52f59

Please sign in to comment.