Skip to content

Commit b1a0af4

Browse files
committed
Make a new project.
0 parents  commit b1a0af4

17 files changed

+5066
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
._*

cv.xcodeproj/project.pbxproj

+307
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,307 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
14311BE71361788700C0C593 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14311BE61361788700C0C593 /* UIKit.framework */; };
11+
14311BE91361788700C0C593 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14311BE81361788700C0C593 /* Foundation.framework */; };
12+
14311BEB1361788700C0C593 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14311BEA1361788700C0C593 /* CoreGraphics.framework */; };
13+
14311BF11361788700C0C593 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 14311BEF1361788700C0C593 /* InfoPlist.strings */; };
14+
14311BF41361788700C0C593 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 14311BF31361788700C0C593 /* main.m */; };
15+
14311BF71361788700C0C593 /* cvAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 14311BF61361788700C0C593 /* cvAppDelegate.m */; };
16+
14311BFA1361788700C0C593 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 14311BF81361788700C0C593 /* MainWindow.xib */; };
17+
14311BFD1361788700C0C593 /* cvViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 14311BFC1361788700C0C593 /* cvViewController.m */; };
18+
14311C001361788700C0C593 /* cvViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 14311BFE1361788700C0C593 /* cvViewController.xib */; };
19+
14311C09136178AE00C0C593 /* MainWindow-iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 14311C07136178AE00C0C593 /* MainWindow-iPad.xib */; };
20+
/* End PBXBuildFile section */
21+
22+
/* Begin PBXFileReference section */
23+
14311BE21361788700C0C593 /* cv.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = cv.app; sourceTree = BUILT_PRODUCTS_DIR; };
24+
14311BE61361788700C0C593 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
25+
14311BE81361788700C0C593 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
26+
14311BEA1361788700C0C593 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
27+
14311BEE1361788700C0C593 /* cv-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "cv-Info.plist"; sourceTree = "<group>"; };
28+
14311BF01361788700C0C593 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
29+
14311BF21361788700C0C593 /* cv-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "cv-Prefix.pch"; sourceTree = "<group>"; };
30+
14311BF31361788700C0C593 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
31+
14311BF51361788700C0C593 /* cvAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cvAppDelegate.h; sourceTree = "<group>"; };
32+
14311BF61361788700C0C593 /* cvAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = cvAppDelegate.m; sourceTree = "<group>"; };
33+
14311BF91361788700C0C593 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainWindow.xib; sourceTree = "<group>"; };
34+
14311BFB1361788700C0C593 /* cvViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cvViewController.h; sourceTree = "<group>"; };
35+
14311BFC1361788700C0C593 /* cvViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = cvViewController.m; sourceTree = "<group>"; };
36+
14311BFF1361788700C0C593 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/cvViewController.xib; sourceTree = "<group>"; };
37+
14311C08136178AE00C0C593 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = "iPad/en.lproj/MainWindow-iPad.xib"; sourceTree = "<group>"; };
38+
/* End PBXFileReference section */
39+
40+
/* Begin PBXFrameworksBuildPhase section */
41+
14311BDF1361788700C0C593 /* Frameworks */ = {
42+
isa = PBXFrameworksBuildPhase;
43+
buildActionMask = 2147483647;
44+
files = (
45+
14311BE71361788700C0C593 /* UIKit.framework in Frameworks */,
46+
14311BE91361788700C0C593 /* Foundation.framework in Frameworks */,
47+
14311BEB1361788700C0C593 /* CoreGraphics.framework in Frameworks */,
48+
);
49+
runOnlyForDeploymentPostprocessing = 0;
50+
};
51+
/* End PBXFrameworksBuildPhase section */
52+
53+
/* Begin PBXGroup section */
54+
14311BD71361788700C0C593 = {
55+
isa = PBXGroup;
56+
children = (
57+
14311BEC1361788700C0C593 /* cv */,
58+
14311BE51361788700C0C593 /* Frameworks */,
59+
14311BE31361788700C0C593 /* Products */,
60+
);
61+
sourceTree = "<group>";
62+
};
63+
14311BE31361788700C0C593 /* Products */ = {
64+
isa = PBXGroup;
65+
children = (
66+
14311BE21361788700C0C593 /* cv.app */,
67+
);
68+
name = Products;
69+
sourceTree = "<group>";
70+
};
71+
14311BE51361788700C0C593 /* Frameworks */ = {
72+
isa = PBXGroup;
73+
children = (
74+
14311BE61361788700C0C593 /* UIKit.framework */,
75+
14311BE81361788700C0C593 /* Foundation.framework */,
76+
14311BEA1361788700C0C593 /* CoreGraphics.framework */,
77+
);
78+
name = Frameworks;
79+
sourceTree = "<group>";
80+
};
81+
14311BEC1361788700C0C593 /* cv */ = {
82+
isa = PBXGroup;
83+
children = (
84+
14311C06136178AD00C0C593 /* iPad */,
85+
14311BF51361788700C0C593 /* cvAppDelegate.h */,
86+
14311BF61361788700C0C593 /* cvAppDelegate.m */,
87+
14311BF81361788700C0C593 /* MainWindow.xib */,
88+
14311BFB1361788700C0C593 /* cvViewController.h */,
89+
14311BFC1361788700C0C593 /* cvViewController.m */,
90+
14311BFE1361788700C0C593 /* cvViewController.xib */,
91+
14311BED1361788700C0C593 /* Supporting Files */,
92+
);
93+
path = cv;
94+
sourceTree = "<group>";
95+
};
96+
14311BED1361788700C0C593 /* Supporting Files */ = {
97+
isa = PBXGroup;
98+
children = (
99+
14311BEE1361788700C0C593 /* cv-Info.plist */,
100+
14311BEF1361788700C0C593 /* InfoPlist.strings */,
101+
14311BF21361788700C0C593 /* cv-Prefix.pch */,
102+
14311BF31361788700C0C593 /* main.m */,
103+
);
104+
name = "Supporting Files";
105+
sourceTree = "<group>";
106+
};
107+
14311C06136178AD00C0C593 /* iPad */ = {
108+
isa = PBXGroup;
109+
children = (
110+
14311C07136178AE00C0C593 /* MainWindow-iPad.xib */,
111+
);
112+
name = iPad;
113+
sourceTree = "<group>";
114+
};
115+
/* End PBXGroup section */
116+
117+
/* Begin PBXNativeTarget section */
118+
14311BE11361788700C0C593 /* cv */ = {
119+
isa = PBXNativeTarget;
120+
buildConfigurationList = 14311C031361788700C0C593 /* Build configuration list for PBXNativeTarget "cv" */;
121+
buildPhases = (
122+
14311BDE1361788700C0C593 /* Sources */,
123+
14311BDF1361788700C0C593 /* Frameworks */,
124+
14311BE01361788700C0C593 /* Resources */,
125+
);
126+
buildRules = (
127+
);
128+
dependencies = (
129+
);
130+
name = cv;
131+
productName = cv;
132+
productReference = 14311BE21361788700C0C593 /* cv.app */;
133+
productType = "com.apple.product-type.application";
134+
};
135+
/* End PBXNativeTarget section */
136+
137+
/* Begin PBXProject section */
138+
14311BD91361788700C0C593 /* Project object */ = {
139+
isa = PBXProject;
140+
buildConfigurationList = 14311BDC1361788700C0C593 /* Build configuration list for PBXProject "cv" */;
141+
compatibilityVersion = "Xcode 3.2";
142+
developmentRegion = English;
143+
hasScannedForEncodings = 0;
144+
knownRegions = (
145+
en,
146+
);
147+
mainGroup = 14311BD71361788700C0C593;
148+
productRefGroup = 14311BE31361788700C0C593 /* Products */;
149+
projectDirPath = "";
150+
projectRoot = "";
151+
targets = (
152+
14311BE11361788700C0C593 /* cv */,
153+
);
154+
};
155+
/* End PBXProject section */
156+
157+
/* Begin PBXResourcesBuildPhase section */
158+
14311BE01361788700C0C593 /* Resources */ = {
159+
isa = PBXResourcesBuildPhase;
160+
buildActionMask = 2147483647;
161+
files = (
162+
14311BF11361788700C0C593 /* InfoPlist.strings in Resources */,
163+
14311BFA1361788700C0C593 /* MainWindow.xib in Resources */,
164+
14311C001361788700C0C593 /* cvViewController.xib in Resources */,
165+
14311C09136178AE00C0C593 /* MainWindow-iPad.xib in Resources */,
166+
);
167+
runOnlyForDeploymentPostprocessing = 0;
168+
};
169+
/* End PBXResourcesBuildPhase section */
170+
171+
/* Begin PBXSourcesBuildPhase section */
172+
14311BDE1361788700C0C593 /* Sources */ = {
173+
isa = PBXSourcesBuildPhase;
174+
buildActionMask = 2147483647;
175+
files = (
176+
14311BF41361788700C0C593 /* main.m in Sources */,
177+
14311BF71361788700C0C593 /* cvAppDelegate.m in Sources */,
178+
14311BFD1361788700C0C593 /* cvViewController.m in Sources */,
179+
);
180+
runOnlyForDeploymentPostprocessing = 0;
181+
};
182+
/* End PBXSourcesBuildPhase section */
183+
184+
/* Begin PBXVariantGroup section */
185+
14311BEF1361788700C0C593 /* InfoPlist.strings */ = {
186+
isa = PBXVariantGroup;
187+
children = (
188+
14311BF01361788700C0C593 /* en */,
189+
);
190+
name = InfoPlist.strings;
191+
sourceTree = "<group>";
192+
};
193+
14311BF81361788700C0C593 /* MainWindow.xib */ = {
194+
isa = PBXVariantGroup;
195+
children = (
196+
14311BF91361788700C0C593 /* en */,
197+
);
198+
name = MainWindow.xib;
199+
sourceTree = "<group>";
200+
};
201+
14311BFE1361788700C0C593 /* cvViewController.xib */ = {
202+
isa = PBXVariantGroup;
203+
children = (
204+
14311BFF1361788700C0C593 /* en */,
205+
);
206+
name = cvViewController.xib;
207+
sourceTree = "<group>";
208+
};
209+
14311C07136178AE00C0C593 /* MainWindow-iPad.xib */ = {
210+
isa = PBXVariantGroup;
211+
children = (
212+
14311C08136178AE00C0C593 /* en */,
213+
);
214+
name = "MainWindow-iPad.xib";
215+
sourceTree = "<group>";
216+
};
217+
/* End PBXVariantGroup section */
218+
219+
/* Begin XCBuildConfiguration section */
220+
14311C011361788700C0C593 /* Debug */ = {
221+
isa = XCBuildConfiguration;
222+
buildSettings = {
223+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
224+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
225+
GCC_C_LANGUAGE_STANDARD = gnu99;
226+
GCC_OPTIMIZATION_LEVEL = 0;
227+
GCC_PREPROCESSOR_DEFINITIONS = DEBUG;
228+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
229+
GCC_VERSION = com.apple.compilers.llvmgcc42;
230+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
231+
GCC_WARN_UNUSED_VARIABLE = YES;
232+
IPHONEOS_DEPLOYMENT_TARGET = 4.3;
233+
SDKROOT = iphoneos;
234+
};
235+
name = Debug;
236+
};
237+
14311C021361788700C0C593 /* Release */ = {
238+
isa = XCBuildConfiguration;
239+
buildSettings = {
240+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
241+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
242+
GCC_C_LANGUAGE_STANDARD = gnu99;
243+
GCC_VERSION = com.apple.compilers.llvmgcc42;
244+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
245+
GCC_WARN_UNUSED_VARIABLE = YES;
246+
IPHONEOS_DEPLOYMENT_TARGET = 4.3;
247+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
248+
SDKROOT = iphoneos;
249+
};
250+
name = Release;
251+
};
252+
14311C041361788700C0C593 /* Debug */ = {
253+
isa = XCBuildConfiguration;
254+
buildSettings = {
255+
ALWAYS_SEARCH_USER_PATHS = NO;
256+
COPY_PHASE_STRIP = NO;
257+
GCC_DYNAMIC_NO_PIC = NO;
258+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
259+
GCC_PREFIX_HEADER = "cv/cv-Prefix.pch";
260+
INFOPLIST_FILE = "cv/cv-Info.plist";
261+
IPHONEOS_DEPLOYMENT_TARGET = 4.3;
262+
PRODUCT_NAME = "$(TARGET_NAME)";
263+
TARGETED_DEVICE_FAMILY = "1,2";
264+
WRAPPER_EXTENSION = app;
265+
};
266+
name = Debug;
267+
};
268+
14311C051361788700C0C593 /* Release */ = {
269+
isa = XCBuildConfiguration;
270+
buildSettings = {
271+
ALWAYS_SEARCH_USER_PATHS = NO;
272+
COPY_PHASE_STRIP = YES;
273+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
274+
GCC_PREFIX_HEADER = "cv/cv-Prefix.pch";
275+
INFOPLIST_FILE = "cv/cv-Info.plist";
276+
IPHONEOS_DEPLOYMENT_TARGET = 4.3;
277+
PRODUCT_NAME = "$(TARGET_NAME)";
278+
TARGETED_DEVICE_FAMILY = "1,2";
279+
VALIDATE_PRODUCT = YES;
280+
WRAPPER_EXTENSION = app;
281+
};
282+
name = Release;
283+
};
284+
/* End XCBuildConfiguration section */
285+
286+
/* Begin XCConfigurationList section */
287+
14311BDC1361788700C0C593 /* Build configuration list for PBXProject "cv" */ = {
288+
isa = XCConfigurationList;
289+
buildConfigurations = (
290+
14311C011361788700C0C593 /* Debug */,
291+
14311C021361788700C0C593 /* Release */,
292+
);
293+
defaultConfigurationIsVisible = 0;
294+
defaultConfigurationName = Release;
295+
};
296+
14311C031361788700C0C593 /* Build configuration list for PBXNativeTarget "cv" */ = {
297+
isa = XCConfigurationList;
298+
buildConfigurations = (
299+
14311C041361788700C0C593 /* Debug */,
300+
14311C051361788700C0C593 /* Release */,
301+
);
302+
defaultConfigurationIsVisible = 0;
303+
};
304+
/* End XCConfigurationList section */
305+
};
306+
rootObject = 14311BD91361788700C0C593 /* Project object */;
307+
}

cv.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)