Skip to content

Commit bc8de34

Browse files
committed
Add Xcode project
1 parent 345c1b3 commit bc8de34

File tree

2 files changed

+347
-1
lines changed

2 files changed

+347
-1
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
boost.1.63.0.0
55
.cache
66
.vscode
7-
*.o
7+
*.o
8+
/porosity/macos/Build
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,345 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
F9915D901F49F9FF00073E87 /* BasicBlocks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D731F49F9FF00073E87 /* BasicBlocks.cpp */; };
11+
F9915D911F49F9FF00073E87 /* CommonData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D751F49F9FF00073E87 /* CommonData.cpp */; };
12+
F9915D921F49F9FF00073E87 /* Contract.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D771F49F9FF00073E87 /* Contract.cpp */; };
13+
F9915D931F49F9FF00073E87 /* Debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D791F49F9FF00073E87 /* Debug.cpp */; };
14+
F9915D941F49F9FF00073E87 /* Disassm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D7B1F49F9FF00073E87 /* Disassm.cpp */; };
15+
F9915D951F49F9FF00073E87 /* Instruction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D7E1F49F9FF00073E87 /* Instruction.cpp */; };
16+
F9915D961F49F9FF00073E87 /* Output.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D821F49F9FF00073E87 /* Output.cpp */; };
17+
F9915D971F49F9FF00073E87 /* Porosity.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D841F49F9FF00073E87 /* Porosity.cpp */; };
18+
F9915D981F49F9FF00073E87 /* SHA3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D871F49F9FF00073E87 /* SHA3.cpp */; };
19+
F9915D991F49F9FF00073E87 /* Statement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D891F49F9FF00073E87 /* Statement.cpp */; };
20+
F9915D9A1F49F9FF00073E87 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D8B1F49F9FF00073E87 /* Utils.cpp */; };
21+
F9915D9B1F49F9FF00073E87 /* VMState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9915D8E1F49F9FF00073E87 /* VMState.cpp */; };
22+
/* End PBXBuildFile section */
23+
24+
/* Begin PBXCopyFilesBuildPhase section */
25+
F9915D3C1F49F97A00073E87 /* CopyFiles */ = {
26+
isa = PBXCopyFilesBuildPhase;
27+
buildActionMask = 2147483647;
28+
dstPath = /usr/share/man/man1/;
29+
dstSubfolderSpec = 0;
30+
files = (
31+
);
32+
runOnlyForDeploymentPostprocessing = 1;
33+
};
34+
/* End PBXCopyFilesBuildPhase section */
35+
36+
/* Begin PBXFileReference section */
37+
F9915D3E1F49F97A00073E87 /* Porosity */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = Porosity; sourceTree = BUILT_PRODUCTS_DIR; };
38+
F9915D721F49F9FF00073E87 /* Assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Assert.h; sourceTree = "<group>"; };
39+
F9915D731F49F9FF00073E87 /* BasicBlocks.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BasicBlocks.cpp; sourceTree = "<group>"; };
40+
F9915D741F49F9FF00073E87 /* Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
41+
F9915D751F49F9FF00073E87 /* CommonData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CommonData.cpp; sourceTree = "<group>"; };
42+
F9915D761F49F9FF00073E87 /* CommonData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonData.h; sourceTree = "<group>"; };
43+
F9915D771F49F9FF00073E87 /* Contract.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Contract.cpp; sourceTree = "<group>"; };
44+
F9915D781F49F9FF00073E87 /* Contract.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Contract.h; sourceTree = "<group>"; };
45+
F9915D791F49F9FF00073E87 /* Debug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Debug.cpp; sourceTree = "<group>"; };
46+
F9915D7A1F49F9FF00073E87 /* Debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Debug.h; sourceTree = "<group>"; };
47+
F9915D7B1F49F9FF00073E87 /* Disassm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Disassm.cpp; sourceTree = "<group>"; };
48+
F9915D7C1F49F9FF00073E87 /* Disassm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Disassm.h; sourceTree = "<group>"; };
49+
F9915D7D1F49F9FF00073E87 /* FixedHash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FixedHash.h; sourceTree = "<group>"; };
50+
F9915D7E1F49F9FF00073E87 /* Instruction.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Instruction.cpp; sourceTree = "<group>"; };
51+
F9915D7F1F49F9FF00073E87 /* Instruction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Instruction.h; sourceTree = "<group>"; };
52+
F9915D811F49F9FF00073E87 /* json.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = json.hpp; sourceTree = "<group>"; };
53+
F9915D821F49F9FF00073E87 /* Output.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Output.cpp; sourceTree = "<group>"; };
54+
F9915D831F49F9FF00073E87 /* Output.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Output.h; sourceTree = "<group>"; };
55+
F9915D841F49F9FF00073E87 /* Porosity.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Porosity.cpp; sourceTree = "<group>"; };
56+
F9915D851F49F9FF00073E87 /* Porosity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Porosity.h; sourceTree = "<group>"; };
57+
F9915D861F49F9FF00073E87 /* PorosityDefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PorosityDefs.h; sourceTree = "<group>"; };
58+
F9915D871F49F9FF00073E87 /* SHA3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SHA3.cpp; sourceTree = "<group>"; };
59+
F9915D881F49F9FF00073E87 /* SHA3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SHA3.h; sourceTree = "<group>"; };
60+
F9915D891F49F9FF00073E87 /* Statement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Statement.cpp; sourceTree = "<group>"; };
61+
F9915D8A1F49F9FF00073E87 /* Statement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Statement.h; sourceTree = "<group>"; };
62+
F9915D8B1F49F9FF00073E87 /* Utils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Utils.cpp; sourceTree = "<group>"; };
63+
F9915D8C1F49F9FF00073E87 /* Utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Utils.h; sourceTree = "<group>"; };
64+
F9915D8D1F49F9FF00073E87 /* vector_ref.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vector_ref.h; sourceTree = "<group>"; };
65+
F9915D8E1F49F9FF00073E87 /* VMState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = VMState.cpp; sourceTree = "<group>"; };
66+
F9915D8F1F49F9FF00073E87 /* VMState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VMState.h; sourceTree = "<group>"; };
67+
/* End PBXFileReference section */
68+
69+
/* Begin PBXFrameworksBuildPhase section */
70+
F9915D3B1F49F97A00073E87 /* Frameworks */ = {
71+
isa = PBXFrameworksBuildPhase;
72+
buildActionMask = 2147483647;
73+
files = (
74+
);
75+
runOnlyForDeploymentPostprocessing = 0;
76+
};
77+
/* End PBXFrameworksBuildPhase section */
78+
79+
/* Begin PBXGroup section */
80+
F9915D351F49F97A00073E87 = {
81+
isa = PBXGroup;
82+
children = (
83+
F9915D401F49F97A00073E87 /* Porosity */,
84+
F9915D3F1F49F97A00073E87 /* Products */,
85+
);
86+
sourceTree = "<group>";
87+
};
88+
F9915D3F1F49F97A00073E87 /* Products */ = {
89+
isa = PBXGroup;
90+
children = (
91+
F9915D3E1F49F97A00073E87 /* Porosity */,
92+
);
93+
name = Products;
94+
sourceTree = "<group>";
95+
};
96+
F9915D401F49F97A00073E87 /* Porosity */ = {
97+
isa = PBXGroup;
98+
children = (
99+
F9915D721F49F9FF00073E87 /* Assert.h */,
100+
F9915D731F49F9FF00073E87 /* BasicBlocks.cpp */,
101+
F9915D741F49F9FF00073E87 /* Common.h */,
102+
F9915D751F49F9FF00073E87 /* CommonData.cpp */,
103+
F9915D761F49F9FF00073E87 /* CommonData.h */,
104+
F9915D771F49F9FF00073E87 /* Contract.cpp */,
105+
F9915D781F49F9FF00073E87 /* Contract.h */,
106+
F9915D791F49F9FF00073E87 /* Debug.cpp */,
107+
F9915D7A1F49F9FF00073E87 /* Debug.h */,
108+
F9915D7B1F49F9FF00073E87 /* Disassm.cpp */,
109+
F9915D7C1F49F9FF00073E87 /* Disassm.h */,
110+
F9915D7D1F49F9FF00073E87 /* FixedHash.h */,
111+
F9915D7E1F49F9FF00073E87 /* Instruction.cpp */,
112+
F9915D7F1F49F9FF00073E87 /* Instruction.h */,
113+
F9915D801F49F9FF00073E87 /* json */,
114+
F9915D821F49F9FF00073E87 /* Output.cpp */,
115+
F9915D831F49F9FF00073E87 /* Output.h */,
116+
F9915D841F49F9FF00073E87 /* Porosity.cpp */,
117+
F9915D851F49F9FF00073E87 /* Porosity.h */,
118+
F9915D861F49F9FF00073E87 /* PorosityDefs.h */,
119+
F9915D871F49F9FF00073E87 /* SHA3.cpp */,
120+
F9915D881F49F9FF00073E87 /* SHA3.h */,
121+
F9915D891F49F9FF00073E87 /* Statement.cpp */,
122+
F9915D8A1F49F9FF00073E87 /* Statement.h */,
123+
F9915D8B1F49F9FF00073E87 /* Utils.cpp */,
124+
F9915D8C1F49F9FF00073E87 /* Utils.h */,
125+
F9915D8D1F49F9FF00073E87 /* vector_ref.h */,
126+
F9915D8E1F49F9FF00073E87 /* VMState.cpp */,
127+
F9915D8F1F49F9FF00073E87 /* VMState.h */,
128+
);
129+
name = Porosity;
130+
path = ../porosity;
131+
sourceTree = SOURCE_ROOT;
132+
};
133+
F9915D801F49F9FF00073E87 /* json */ = {
134+
isa = PBXGroup;
135+
children = (
136+
F9915D811F49F9FF00073E87 /* json.hpp */,
137+
);
138+
path = json;
139+
sourceTree = "<group>";
140+
};
141+
/* End PBXGroup section */
142+
143+
/* Begin PBXNativeTarget section */
144+
F9915D3D1F49F97A00073E87 /* Porosity */ = {
145+
isa = PBXNativeTarget;
146+
buildConfigurationList = F9915D451F49F97A00073E87 /* Build configuration list for PBXNativeTarget "Porosity" */;
147+
buildPhases = (
148+
F9915D3A1F49F97A00073E87 /* Sources */,
149+
F9915D3B1F49F97A00073E87 /* Frameworks */,
150+
F9915D3C1F49F97A00073E87 /* CopyFiles */,
151+
);
152+
buildRules = (
153+
);
154+
dependencies = (
155+
);
156+
name = Porosity;
157+
productName = Porosity;
158+
productReference = F9915D3E1F49F97A00073E87 /* Porosity */;
159+
productType = "com.apple.product-type.tool";
160+
};
161+
/* End PBXNativeTarget section */
162+
163+
/* Begin PBXProject section */
164+
F9915D361F49F97A00073E87 /* Project object */ = {
165+
isa = PBXProject;
166+
attributes = {
167+
LastUpgradeCheck = 0830;
168+
ORGANIZATIONNAME = "Slava Karpenko";
169+
TargetAttributes = {
170+
F9915D3D1F49F97A00073E87 = {
171+
CreatedOnToolsVersion = 8.3.3;
172+
ProvisioningStyle = Automatic;
173+
};
174+
};
175+
};
176+
buildConfigurationList = F9915D391F49F97A00073E87 /* Build configuration list for PBXProject "Porosity" */;
177+
compatibilityVersion = "Xcode 3.2";
178+
developmentRegion = English;
179+
hasScannedForEncodings = 0;
180+
knownRegions = (
181+
en,
182+
);
183+
mainGroup = F9915D351F49F97A00073E87;
184+
productRefGroup = F9915D3F1F49F97A00073E87 /* Products */;
185+
projectDirPath = "";
186+
projectRoot = "";
187+
targets = (
188+
F9915D3D1F49F97A00073E87 /* Porosity */,
189+
);
190+
};
191+
/* End PBXProject section */
192+
193+
/* Begin PBXSourcesBuildPhase section */
194+
F9915D3A1F49F97A00073E87 /* Sources */ = {
195+
isa = PBXSourcesBuildPhase;
196+
buildActionMask = 2147483647;
197+
files = (
198+
F9915D981F49F9FF00073E87 /* SHA3.cpp in Sources */,
199+
F9915D911F49F9FF00073E87 /* CommonData.cpp in Sources */,
200+
F9915D931F49F9FF00073E87 /* Debug.cpp in Sources */,
201+
F9915D951F49F9FF00073E87 /* Instruction.cpp in Sources */,
202+
F9915D9B1F49F9FF00073E87 /* VMState.cpp in Sources */,
203+
F9915D921F49F9FF00073E87 /* Contract.cpp in Sources */,
204+
F9915D941F49F9FF00073E87 /* Disassm.cpp in Sources */,
205+
F9915D901F49F9FF00073E87 /* BasicBlocks.cpp in Sources */,
206+
F9915D991F49F9FF00073E87 /* Statement.cpp in Sources */,
207+
F9915D9A1F49F9FF00073E87 /* Utils.cpp in Sources */,
208+
F9915D971F49F9FF00073E87 /* Porosity.cpp in Sources */,
209+
F9915D961F49F9FF00073E87 /* Output.cpp in Sources */,
210+
);
211+
runOnlyForDeploymentPostprocessing = 0;
212+
};
213+
/* End PBXSourcesBuildPhase section */
214+
215+
/* Begin XCBuildConfiguration section */
216+
F9915D431F49F97A00073E87 /* Debug */ = {
217+
isa = XCBuildConfiguration;
218+
buildSettings = {
219+
ALWAYS_SEARCH_USER_PATHS = NO;
220+
CLANG_ANALYZER_NONNULL = YES;
221+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
222+
CLANG_CXX_LANGUAGE_STANDARD = "c++14";
223+
CLANG_CXX_LIBRARY = "libc++";
224+
CLANG_ENABLE_MODULES = YES;
225+
CLANG_ENABLE_OBJC_ARC = YES;
226+
CLANG_WARN_BOOL_CONVERSION = YES;
227+
CLANG_WARN_CONSTANT_CONVERSION = YES;
228+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
229+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
230+
CLANG_WARN_EMPTY_BODY = YES;
231+
CLANG_WARN_ENUM_CONVERSION = YES;
232+
CLANG_WARN_INFINITE_RECURSION = YES;
233+
CLANG_WARN_INT_CONVERSION = YES;
234+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
235+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
236+
CLANG_WARN_UNREACHABLE_CODE = YES;
237+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
238+
CODE_SIGN_IDENTITY = "-";
239+
COPY_PHASE_STRIP = NO;
240+
DEBUG_INFORMATION_FORMAT = dwarf;
241+
ENABLE_STRICT_OBJC_MSGSEND = YES;
242+
ENABLE_TESTABILITY = YES;
243+
GCC_C_LANGUAGE_STANDARD = gnu99;
244+
GCC_DYNAMIC_NO_PIC = NO;
245+
GCC_NO_COMMON_BLOCKS = YES;
246+
GCC_OPTIMIZATION_LEVEL = 0;
247+
GCC_PREPROCESSOR_DEFINITIONS = (
248+
"DEBUG=1",
249+
"$(inherited)",
250+
);
251+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
252+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
253+
GCC_WARN_UNDECLARED_SELECTOR = YES;
254+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
255+
GCC_WARN_UNUSED_FUNCTION = YES;
256+
GCC_WARN_UNUSED_VARIABLE = YES;
257+
MACOSX_DEPLOYMENT_TARGET = 10.12;
258+
MTL_ENABLE_DEBUG_INFO = YES;
259+
ONLY_ACTIVE_ARCH = YES;
260+
SDKROOT = macosx;
261+
};
262+
name = Debug;
263+
};
264+
F9915D441F49F97A00073E87 /* Release */ = {
265+
isa = XCBuildConfiguration;
266+
buildSettings = {
267+
ALWAYS_SEARCH_USER_PATHS = NO;
268+
CLANG_ANALYZER_NONNULL = YES;
269+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
270+
CLANG_CXX_LANGUAGE_STANDARD = "c++14";
271+
CLANG_CXX_LIBRARY = "libc++";
272+
CLANG_ENABLE_MODULES = YES;
273+
CLANG_ENABLE_OBJC_ARC = YES;
274+
CLANG_WARN_BOOL_CONVERSION = YES;
275+
CLANG_WARN_CONSTANT_CONVERSION = YES;
276+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
277+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
278+
CLANG_WARN_EMPTY_BODY = YES;
279+
CLANG_WARN_ENUM_CONVERSION = YES;
280+
CLANG_WARN_INFINITE_RECURSION = YES;
281+
CLANG_WARN_INT_CONVERSION = YES;
282+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
283+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
284+
CLANG_WARN_UNREACHABLE_CODE = YES;
285+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
286+
CODE_SIGN_IDENTITY = "-";
287+
COPY_PHASE_STRIP = NO;
288+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
289+
ENABLE_NS_ASSERTIONS = NO;
290+
ENABLE_STRICT_OBJC_MSGSEND = YES;
291+
GCC_C_LANGUAGE_STANDARD = gnu99;
292+
GCC_NO_COMMON_BLOCKS = YES;
293+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
294+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
295+
GCC_WARN_UNDECLARED_SELECTOR = YES;
296+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
297+
GCC_WARN_UNUSED_FUNCTION = YES;
298+
GCC_WARN_UNUSED_VARIABLE = YES;
299+
MACOSX_DEPLOYMENT_TARGET = 10.12;
300+
MTL_ENABLE_DEBUG_INFO = NO;
301+
SDKROOT = macosx;
302+
};
303+
name = Release;
304+
};
305+
F9915D461F49F97A00073E87 /* Debug */ = {
306+
isa = XCBuildConfiguration;
307+
buildSettings = {
308+
PRODUCT_NAME = "$(TARGET_NAME)";
309+
SYSTEM_HEADER_SEARCH_PATHS = /usr/local/include;
310+
};
311+
name = Debug;
312+
};
313+
F9915D471F49F97A00073E87 /* Release */ = {
314+
isa = XCBuildConfiguration;
315+
buildSettings = {
316+
PRODUCT_NAME = "$(TARGET_NAME)";
317+
SYSTEM_HEADER_SEARCH_PATHS = /usr/local/include;
318+
};
319+
name = Release;
320+
};
321+
/* End XCBuildConfiguration section */
322+
323+
/* Begin XCConfigurationList section */
324+
F9915D391F49F97A00073E87 /* Build configuration list for PBXProject "Porosity" */ = {
325+
isa = XCConfigurationList;
326+
buildConfigurations = (
327+
F9915D431F49F97A00073E87 /* Debug */,
328+
F9915D441F49F97A00073E87 /* Release */,
329+
);
330+
defaultConfigurationIsVisible = 0;
331+
defaultConfigurationName = Release;
332+
};
333+
F9915D451F49F97A00073E87 /* Build configuration list for PBXNativeTarget "Porosity" */ = {
334+
isa = XCConfigurationList;
335+
buildConfigurations = (
336+
F9915D461F49F97A00073E87 /* Debug */,
337+
F9915D471F49F97A00073E87 /* Release */,
338+
);
339+
defaultConfigurationIsVisible = 0;
340+
defaultConfigurationName = Release;
341+
};
342+
/* End XCConfigurationList section */
343+
};
344+
rootObject = F9915D361F49F97A00073E87 /* Project object */;
345+
}

0 commit comments

Comments
 (0)