Skip to content
This repository was archived by the owner on Dec 30, 2021. It is now read-only.

Commit 9d2e72a

Browse files
committed
first commit
0 parents  commit 9d2e72a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+10512
-0
lines changed

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Xcode
2+
#
3+
build/
4+
*.pbxuser
5+
!default.pbxuser
6+
*.mode1v3
7+
!default.mode1v3
8+
*.mode2v3
9+
!default.mode2v3
10+
*.perspectivev3
11+
!default.perspectivev3
12+
xcuserdata
13+
*.xccheckout
14+
*.moved-aside
15+
DerivedData
16+
*.hmap
17+
*.ipa
18+
*.xcuserstate
19+
*.DS_Store
20+
21+
# CocoaPods
22+
#
23+
# We recommend against adding the Pods directory to your .gitignore. However
24+
# you should judge for yourself, the pros and cons are mentioned at:
25+
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
26+
#
27+
#Pods/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,259 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
CA7B544419FF10F80019A015 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = CA7B544319FF10F80019A015 /* main.m */; };
11+
CA7B546419FF4A110019A015 /* CoreUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA7B546319FF4A110019A015 /* CoreUI.framework */; };
12+
/* End PBXBuildFile section */
13+
14+
/* Begin PBXFileReference section */
15+
CA7B544019FF10F80019A015 /* CARExtractor */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = CARExtractor; sourceTree = BUILT_PRODUCTS_DIR; };
16+
CA7B544319FF10F80019A015 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
17+
CA7B546319FF4A110019A015 /* CoreUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreUI.framework; path = ../../../../../../System/Library/PrivateFrameworks/CoreUI.framework; sourceTree = "<group>"; };
18+
/* End PBXFileReference section */
19+
20+
/* Begin PBXFrameworksBuildPhase section */
21+
CA7B543D19FF10F80019A015 /* Frameworks */ = {
22+
isa = PBXFrameworksBuildPhase;
23+
buildActionMask = 2147483647;
24+
files = (
25+
CA7B546419FF4A110019A015 /* CoreUI.framework in Frameworks */,
26+
);
27+
runOnlyForDeploymentPostprocessing = 0;
28+
};
29+
/* End PBXFrameworksBuildPhase section */
30+
31+
/* Begin PBXGroup section */
32+
CA7B543719FF10F80019A015 = {
33+
isa = PBXGroup;
34+
children = (
35+
CA7B544219FF10F80019A015 /* CARExtractor */,
36+
CA7B544119FF10F80019A015 /* Products */,
37+
);
38+
sourceTree = "<group>";
39+
};
40+
CA7B544119FF10F80019A015 /* Products */ = {
41+
isa = PBXGroup;
42+
children = (
43+
CA7B544019FF10F80019A015 /* CARExtractor */,
44+
);
45+
name = Products;
46+
sourceTree = "<group>";
47+
};
48+
CA7B544219FF10F80019A015 /* CARExtractor */ = {
49+
isa = PBXGroup;
50+
children = (
51+
CA7B546319FF4A110019A015 /* CoreUI.framework */,
52+
CA7B544319FF10F80019A015 /* main.m */,
53+
);
54+
path = CARExtractor;
55+
sourceTree = "<group>";
56+
};
57+
/* End PBXGroup section */
58+
59+
/* Begin PBXNativeTarget section */
60+
CA7B543F19FF10F80019A015 /* CARExtractor */ = {
61+
isa = PBXNativeTarget;
62+
buildConfigurationList = CA7B544719FF10F80019A015 /* Build configuration list for PBXNativeTarget "CARExtractor" */;
63+
buildPhases = (
64+
CA7B543C19FF10F80019A015 /* Sources */,
65+
CA7B543D19FF10F80019A015 /* Frameworks */,
66+
CA7B544A19FF110C0019A015 /* Run Script */,
67+
);
68+
buildRules = (
69+
);
70+
dependencies = (
71+
);
72+
name = CARExtractor;
73+
productName = CARExtractor;
74+
productReference = CA7B544019FF10F80019A015 /* CARExtractor */;
75+
productType = "com.apple.product-type.tool";
76+
};
77+
/* End PBXNativeTarget section */
78+
79+
/* Begin PBXProject section */
80+
CA7B543819FF10F80019A015 /* Project object */ = {
81+
isa = PBXProject;
82+
attributes = {
83+
LastUpgradeCheck = 0600;
84+
ORGANIZATIONNAME = BrandonMcQuilkin;
85+
TargetAttributes = {
86+
CA7B543F19FF10F80019A015 = {
87+
CreatedOnToolsVersion = 6.0;
88+
};
89+
};
90+
};
91+
buildConfigurationList = CA7B543B19FF10F80019A015 /* Build configuration list for PBXProject "CARExtractor" */;
92+
compatibilityVersion = "Xcode 3.2";
93+
developmentRegion = English;
94+
hasScannedForEncodings = 0;
95+
knownRegions = (
96+
en,
97+
);
98+
mainGroup = CA7B543719FF10F80019A015;
99+
productRefGroup = CA7B544119FF10F80019A015 /* Products */;
100+
projectDirPath = "";
101+
projectRoot = "";
102+
targets = (
103+
CA7B543F19FF10F80019A015 /* CARExtractor */,
104+
);
105+
};
106+
/* End PBXProject section */
107+
108+
/* Begin PBXShellScriptBuildPhase section */
109+
CA7B544A19FF110C0019A015 /* Run Script */ = {
110+
isa = PBXShellScriptBuildPhase;
111+
buildActionMask = 2147483647;
112+
files = (
113+
);
114+
inputPaths = (
115+
);
116+
name = "Run Script";
117+
outputPaths = (
118+
);
119+
runOnlyForDeploymentPostprocessing = 0;
120+
shellPath = /bin/sh;
121+
shellScript = "mkdir -p \"${PROJECT_DIR}/Product\";\ncp \"${TARGET_BUILD_DIR}/${TARGET_NAME}\" \"${PROJECT_DIR}/Product/${TARGET_NAME}\"";
122+
};
123+
/* End PBXShellScriptBuildPhase section */
124+
125+
/* Begin PBXSourcesBuildPhase section */
126+
CA7B543C19FF10F80019A015 /* Sources */ = {
127+
isa = PBXSourcesBuildPhase;
128+
buildActionMask = 2147483647;
129+
files = (
130+
CA7B544419FF10F80019A015 /* main.m in Sources */,
131+
);
132+
runOnlyForDeploymentPostprocessing = 0;
133+
};
134+
/* End PBXSourcesBuildPhase section */
135+
136+
/* Begin XCBuildConfiguration section */
137+
CA7B544519FF10F80019A015 /* Debug */ = {
138+
isa = XCBuildConfiguration;
139+
buildSettings = {
140+
ALWAYS_SEARCH_USER_PATHS = NO;
141+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
142+
CLANG_CXX_LIBRARY = "libc++";
143+
CLANG_ENABLE_MODULES = YES;
144+
CLANG_ENABLE_OBJC_ARC = YES;
145+
CLANG_WARN_BOOL_CONVERSION = YES;
146+
CLANG_WARN_CONSTANT_CONVERSION = YES;
147+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
148+
CLANG_WARN_EMPTY_BODY = YES;
149+
CLANG_WARN_ENUM_CONVERSION = YES;
150+
CLANG_WARN_INT_CONVERSION = YES;
151+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
152+
CLANG_WARN_UNREACHABLE_CODE = YES;
153+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
154+
COPY_PHASE_STRIP = NO;
155+
ENABLE_STRICT_OBJC_MSGSEND = YES;
156+
GCC_C_LANGUAGE_STANDARD = gnu99;
157+
GCC_DYNAMIC_NO_PIC = NO;
158+
GCC_OPTIMIZATION_LEVEL = 0;
159+
GCC_PREPROCESSOR_DEFINITIONS = (
160+
"DEBUG=1",
161+
"$(inherited)",
162+
);
163+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
164+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
165+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
166+
GCC_WARN_UNDECLARED_SELECTOR = YES;
167+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
168+
GCC_WARN_UNUSED_FUNCTION = YES;
169+
GCC_WARN_UNUSED_VARIABLE = YES;
170+
MACOSX_DEPLOYMENT_TARGET = 10.9;
171+
MTL_ENABLE_DEBUG_INFO = YES;
172+
ONLY_ACTIVE_ARCH = YES;
173+
SDKROOT = macosx;
174+
};
175+
name = Debug;
176+
};
177+
CA7B544619FF10F80019A015 /* Release */ = {
178+
isa = XCBuildConfiguration;
179+
buildSettings = {
180+
ALWAYS_SEARCH_USER_PATHS = NO;
181+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
182+
CLANG_CXX_LIBRARY = "libc++";
183+
CLANG_ENABLE_MODULES = YES;
184+
CLANG_ENABLE_OBJC_ARC = YES;
185+
CLANG_WARN_BOOL_CONVERSION = YES;
186+
CLANG_WARN_CONSTANT_CONVERSION = YES;
187+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
188+
CLANG_WARN_EMPTY_BODY = YES;
189+
CLANG_WARN_ENUM_CONVERSION = YES;
190+
CLANG_WARN_INT_CONVERSION = YES;
191+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
192+
CLANG_WARN_UNREACHABLE_CODE = YES;
193+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
194+
COPY_PHASE_STRIP = YES;
195+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
196+
ENABLE_NS_ASSERTIONS = NO;
197+
ENABLE_STRICT_OBJC_MSGSEND = YES;
198+
GCC_C_LANGUAGE_STANDARD = gnu99;
199+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
200+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
201+
GCC_WARN_UNDECLARED_SELECTOR = YES;
202+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
203+
GCC_WARN_UNUSED_FUNCTION = YES;
204+
GCC_WARN_UNUSED_VARIABLE = YES;
205+
MACOSX_DEPLOYMENT_TARGET = 10.9;
206+
MTL_ENABLE_DEBUG_INFO = NO;
207+
SDKROOT = macosx;
208+
};
209+
name = Release;
210+
};
211+
CA7B544819FF10F80019A015 /* Debug */ = {
212+
isa = XCBuildConfiguration;
213+
buildSettings = {
214+
FRAMEWORK_SEARCH_PATHS = (
215+
"$(inherited)",
216+
"$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks",
217+
);
218+
MACOSX_DEPLOYMENT_TARGET = 10.8;
219+
PRODUCT_NAME = "$(TARGET_NAME)";
220+
};
221+
name = Debug;
222+
};
223+
CA7B544919FF10F80019A015 /* Release */ = {
224+
isa = XCBuildConfiguration;
225+
buildSettings = {
226+
FRAMEWORK_SEARCH_PATHS = (
227+
"$(inherited)",
228+
"$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks",
229+
);
230+
MACOSX_DEPLOYMENT_TARGET = 10.8;
231+
PRODUCT_NAME = "$(TARGET_NAME)";
232+
};
233+
name = Release;
234+
};
235+
/* End XCBuildConfiguration section */
236+
237+
/* Begin XCConfigurationList section */
238+
CA7B543B19FF10F80019A015 /* Build configuration list for PBXProject "CARExtractor" */ = {
239+
isa = XCConfigurationList;
240+
buildConfigurations = (
241+
CA7B544519FF10F80019A015 /* Debug */,
242+
CA7B544619FF10F80019A015 /* Release */,
243+
);
244+
defaultConfigurationIsVisible = 0;
245+
defaultConfigurationName = Release;
246+
};
247+
CA7B544719FF10F80019A015 /* Build configuration list for PBXNativeTarget "CARExtractor" */ = {
248+
isa = XCConfigurationList;
249+
buildConfigurations = (
250+
CA7B544819FF10F80019A015 /* Debug */,
251+
CA7B544919FF10F80019A015 /* Release */,
252+
);
253+
defaultConfigurationIsVisible = 0;
254+
defaultConfigurationName = Release;
255+
};
256+
/* End XCConfigurationList section */
257+
};
258+
rootObject = CA7B543819FF10F80019A015 /* Project object */;
259+
}

CARExtractor/CARExtractor.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0620"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "CA7B543F19FF10F80019A015"
18+
BuildableName = "CARExtractor"
19+
BlueprintName = "CARExtractor"
20+
ReferencedContainer = "container:CARExtractor.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
<BuildActionEntry
24+
buildForTesting = "YES"
25+
buildForRunning = "YES"
26+
buildForProfiling = "YES"
27+
buildForArchiving = "YES"
28+
buildForAnalyzing = "YES">
29+
<BuildableReference
30+
BuildableIdentifier = "primary"
31+
BlueprintIdentifier = "C24D24E41B16047D00DDE534"
32+
BuildableName = "iOS Images Extractor.app"
33+
BlueprintName = "iOSImagesExtractor"
34+
ReferencedContainer = "container:../iOSImagesExtractor/iOSImagesExtractor.xcodeproj">
35+
</BuildableReference>
36+
</BuildActionEntry>
37+
</BuildActionEntries>
38+
</BuildAction>
39+
<TestAction
40+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
41+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
42+
shouldUseLaunchSchemeArgsEnv = "YES"
43+
buildConfiguration = "Debug">
44+
<Testables>
45+
</Testables>
46+
<MacroExpansion>
47+
<BuildableReference
48+
BuildableIdentifier = "primary"
49+
BlueprintIdentifier = "CA7B543F19FF10F80019A015"
50+
BuildableName = "CARExtractor"
51+
BlueprintName = "CARExtractor"
52+
ReferencedContainer = "container:CARExtractor.xcodeproj">
53+
</BuildableReference>
54+
</MacroExpansion>
55+
</TestAction>
56+
<LaunchAction
57+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
58+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
59+
launchStyle = "0"
60+
useCustomWorkingDirectory = "NO"
61+
buildConfiguration = "Debug"
62+
ignoresPersistentStateOnLaunch = "NO"
63+
debugDocumentVersioning = "YES"
64+
allowLocationSimulation = "YES">
65+
<BuildableProductRunnable
66+
runnableDebuggingMode = "0">
67+
<BuildableReference
68+
BuildableIdentifier = "primary"
69+
BlueprintIdentifier = "CA7B543F19FF10F80019A015"
70+
BuildableName = "CARExtractor"
71+
BlueprintName = "CARExtractor"
72+
ReferencedContainer = "container:CARExtractor.xcodeproj">
73+
</BuildableReference>
74+
</BuildableProductRunnable>
75+
<AdditionalOptions>
76+
</AdditionalOptions>
77+
</LaunchAction>
78+
<ProfileAction
79+
shouldUseLaunchSchemeArgsEnv = "YES"
80+
savedToolIdentifier = ""
81+
useCustomWorkingDirectory = "NO"
82+
buildConfiguration = "Release"
83+
debugDocumentVersioning = "YES">
84+
<BuildableProductRunnable
85+
runnableDebuggingMode = "0">
86+
<BuildableReference
87+
BuildableIdentifier = "primary"
88+
BlueprintIdentifier = "CA7B543F19FF10F80019A015"
89+
BuildableName = "CARExtractor"
90+
BlueprintName = "CARExtractor"
91+
ReferencedContainer = "container:CARExtractor.xcodeproj">
92+
</BuildableReference>
93+
</BuildableProductRunnable>
94+
</ProfileAction>
95+
<AnalyzeAction
96+
buildConfiguration = "Debug">
97+
</AnalyzeAction>
98+
<ArchiveAction
99+
buildConfiguration = "Release"
100+
revealArchiveInOrganizer = "YES">
101+
</ArchiveAction>
102+
</Scheme>

0 commit comments

Comments
 (0)