Skip to content

Commit b118475

Browse files
committed
Fixed build for new code that assumed the modern runtime and Security
Framework was available.
1 parent b3cf505 commit b118475

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Example1/Example1.xcodeproj/project.pbxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
467BEE3D113AFA1600C21AFE /* OrderViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 467BEE17113AF88000C21AFE /* OrderViewController.h */; };
3737
467BEE3E113AFA1700C21AFE /* OrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 467BEE18113AF88000C21AFE /* OrderViewController.m */; };
3838
4684D95D114A323500CFE920 /* APPL.icns in Resources */ = {isa = PBXBuildFile; fileRef = 4684D95C114A323500CFE920 /* APPL.icns */; };
39+
5F6C91BA1717AB5200241303 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6C91B91717AB5200241303 /* Security.framework */; };
3940
8D11072A0486CEB800E47090 /* MainMenu.nib in Resources */ = {isa = PBXBuildFile; fileRef = 29B97318FDCFA39411CA2CEA /* MainMenu.nib */; };
4041
8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; };
4142
8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
@@ -93,6 +94,7 @@
9394
467BEE17113AF88000C21AFE /* OrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OrderViewController.h; sourceTree = "<group>"; };
9495
467BEE18113AF88000C21AFE /* OrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OrderViewController.m; sourceTree = "<group>"; };
9596
4684D95C114A323500CFE920 /* APPL.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = APPL.icns; sourceTree = "<group>"; };
97+
5F6C91B91717AB5200241303 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = ../../../../../../../System/Library/Frameworks/Security.framework; sourceTree = "<group>"; };
9698
8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
9799
8D1107320486CEB800E47090 /* Example1.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example1.app; sourceTree = BUILT_PRODUCTS_DIR; };
98100
/* End PBXFileReference section */
@@ -102,6 +104,7 @@
102104
isa = PBXFrameworksBuildPhase;
103105
buildActionMask = 2147483647;
104106
files = (
107+
5F6C91BA1717AB5200241303 /* Security.framework in Frameworks */,
105108
464D984114EC055B00F30753 /* WebKit.framework in Frameworks */,
106109
8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */,
107110
467BEDEA113AF50200C21AFE /* AddressBook.framework in Frameworks */,
@@ -153,6 +156,7 @@
153156
29B97314FDCFA39411CA2CEA /* Example1 */ = {
154157
isa = PBXGroup;
155158
children = (
159+
5F6C91B91717AB5200241303 /* Security.framework */,
156160
080E96DDFE201D6D7F000001 /* Classes */,
157161
29B97315FDCFA39411CA2CEA /* Other Sources */,
158162
29B97317FDCFA39411CA2CEA /* Resources */,
@@ -399,6 +403,7 @@
399403
C01FCF4F08A954540054247B /* Debug */ = {
400404
isa = XCBuildConfiguration;
401405
buildSettings = {
406+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
402407
GCC_WARN_ABOUT_RETURN_TYPE = YES;
403408
GCC_WARN_UNUSED_VARIABLE = YES;
404409
};
@@ -407,6 +412,7 @@
407412
C01FCF5008A954540054247B /* Release */ = {
408413
isa = XCBuildConfiguration;
409414
buildSettings = {
415+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
410416
GCC_WARN_ABOUT_RETURN_TYPE = YES;
411417
GCC_WARN_UNUSED_VARIABLE = YES;
412418
};

0 commit comments

Comments
 (0)