Skip to content

Commit 57d15c1

Browse files
committed
Initial Commit
0 parents  commit 57d15c1

File tree

5 files changed

+323
-0
lines changed

5 files changed

+323
-0
lines changed
Lines changed: 279 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,279 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 50;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
F5FE29A421F14A1B00A21304 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5FE29A321F14A1B00A21304 /* main.cpp */; };
11+
/* End PBXBuildFile section */
12+
13+
/* Begin PBXCopyFilesBuildPhase section */
14+
F5FE299E21F14A1B00A21304 /* CopyFiles */ = {
15+
isa = PBXCopyFilesBuildPhase;
16+
buildActionMask = 2147483647;
17+
dstPath = /usr/share/man/man1/;
18+
dstSubfolderSpec = 0;
19+
files = (
20+
);
21+
runOnlyForDeploymentPostprocessing = 1;
22+
};
23+
/* End PBXCopyFilesBuildPhase section */
24+
25+
/* Begin PBXFileReference section */
26+
F5FE29A021F14A1B00A21304 /* FindCycleInGraph */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = FindCycleInGraph; sourceTree = BUILT_PRODUCTS_DIR; };
27+
F5FE29A321F14A1B00A21304 /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
28+
/* End PBXFileReference section */
29+
30+
/* Begin PBXFrameworksBuildPhase section */
31+
F5FE299D21F14A1B00A21304 /* Frameworks */ = {
32+
isa = PBXFrameworksBuildPhase;
33+
buildActionMask = 2147483647;
34+
files = (
35+
);
36+
runOnlyForDeploymentPostprocessing = 0;
37+
};
38+
/* End PBXFrameworksBuildPhase section */
39+
40+
/* Begin PBXGroup section */
41+
F5FE299721F14A1B00A21304 = {
42+
isa = PBXGroup;
43+
children = (
44+
F5FE29A221F14A1B00A21304 /* FindCycleInGraph */,
45+
F5FE29A121F14A1B00A21304 /* Products */,
46+
);
47+
sourceTree = "<group>";
48+
};
49+
F5FE29A121F14A1B00A21304 /* Products */ = {
50+
isa = PBXGroup;
51+
children = (
52+
F5FE29A021F14A1B00A21304 /* FindCycleInGraph */,
53+
);
54+
name = Products;
55+
sourceTree = "<group>";
56+
};
57+
F5FE29A221F14A1B00A21304 /* FindCycleInGraph */ = {
58+
isa = PBXGroup;
59+
children = (
60+
F5FE29A321F14A1B00A21304 /* main.cpp */,
61+
);
62+
path = FindCycleInGraph;
63+
sourceTree = "<group>";
64+
};
65+
/* End PBXGroup section */
66+
67+
/* Begin PBXNativeTarget section */
68+
F5FE299F21F14A1B00A21304 /* FindCycleInGraph */ = {
69+
isa = PBXNativeTarget;
70+
buildConfigurationList = F5FE29A721F14A1B00A21304 /* Build configuration list for PBXNativeTarget "FindCycleInGraph" */;
71+
buildPhases = (
72+
F5FE299C21F14A1B00A21304 /* Sources */,
73+
F5FE299D21F14A1B00A21304 /* Frameworks */,
74+
F5FE299E21F14A1B00A21304 /* CopyFiles */,
75+
);
76+
buildRules = (
77+
);
78+
dependencies = (
79+
);
80+
name = FindCycleInGraph;
81+
productName = FindCycleInGraph;
82+
productReference = F5FE29A021F14A1B00A21304 /* FindCycleInGraph */;
83+
productType = "com.apple.product-type.tool";
84+
};
85+
/* End PBXNativeTarget section */
86+
87+
/* Begin PBXProject section */
88+
F5FE299821F14A1B00A21304 /* Project object */ = {
89+
isa = PBXProject;
90+
attributes = {
91+
LastUpgradeCheck = 1010;
92+
ORGANIZATIONNAME = vlad;
93+
TargetAttributes = {
94+
F5FE299F21F14A1B00A21304 = {
95+
CreatedOnToolsVersion = 10.1;
96+
};
97+
};
98+
};
99+
buildConfigurationList = F5FE299B21F14A1B00A21304 /* Build configuration list for PBXProject "FindCycleInGraph" */;
100+
compatibilityVersion = "Xcode 9.3";
101+
developmentRegion = en;
102+
hasScannedForEncodings = 0;
103+
knownRegions = (
104+
en,
105+
);
106+
mainGroup = F5FE299721F14A1B00A21304;
107+
productRefGroup = F5FE29A121F14A1B00A21304 /* Products */;
108+
projectDirPath = "";
109+
projectRoot = "";
110+
targets = (
111+
F5FE299F21F14A1B00A21304 /* FindCycleInGraph */,
112+
);
113+
};
114+
/* End PBXProject section */
115+
116+
/* Begin PBXSourcesBuildPhase section */
117+
F5FE299C21F14A1B00A21304 /* Sources */ = {
118+
isa = PBXSourcesBuildPhase;
119+
buildActionMask = 2147483647;
120+
files = (
121+
F5FE29A421F14A1B00A21304 /* main.cpp in Sources */,
122+
);
123+
runOnlyForDeploymentPostprocessing = 0;
124+
};
125+
/* End PBXSourcesBuildPhase section */
126+
127+
/* Begin XCBuildConfiguration section */
128+
F5FE29A521F14A1B00A21304 /* Debug */ = {
129+
isa = XCBuildConfiguration;
130+
buildSettings = {
131+
ALWAYS_SEARCH_USER_PATHS = NO;
132+
CLANG_ANALYZER_NONNULL = YES;
133+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
134+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
135+
CLANG_CXX_LIBRARY = "libc++";
136+
CLANG_ENABLE_MODULES = YES;
137+
CLANG_ENABLE_OBJC_ARC = YES;
138+
CLANG_ENABLE_OBJC_WEAK = YES;
139+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
140+
CLANG_WARN_BOOL_CONVERSION = YES;
141+
CLANG_WARN_COMMA = YES;
142+
CLANG_WARN_CONSTANT_CONVERSION = YES;
143+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
144+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
145+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
146+
CLANG_WARN_EMPTY_BODY = YES;
147+
CLANG_WARN_ENUM_CONVERSION = YES;
148+
CLANG_WARN_INFINITE_RECURSION = YES;
149+
CLANG_WARN_INT_CONVERSION = YES;
150+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
151+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
152+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
153+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
154+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
155+
CLANG_WARN_STRICT_PROTOTYPES = YES;
156+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
157+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
158+
CLANG_WARN_UNREACHABLE_CODE = YES;
159+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
160+
CODE_SIGN_IDENTITY = "-";
161+
COPY_PHASE_STRIP = NO;
162+
DEBUG_INFORMATION_FORMAT = dwarf;
163+
ENABLE_STRICT_OBJC_MSGSEND = YES;
164+
ENABLE_TESTABILITY = YES;
165+
GCC_C_LANGUAGE_STANDARD = gnu11;
166+
GCC_DYNAMIC_NO_PIC = NO;
167+
GCC_NO_COMMON_BLOCKS = YES;
168+
GCC_OPTIMIZATION_LEVEL = 0;
169+
GCC_PREPROCESSOR_DEFINITIONS = (
170+
"DEBUG=1",
171+
"$(inherited)",
172+
);
173+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
174+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
175+
GCC_WARN_UNDECLARED_SELECTOR = YES;
176+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
177+
GCC_WARN_UNUSED_FUNCTION = YES;
178+
GCC_WARN_UNUSED_VARIABLE = YES;
179+
MACOSX_DEPLOYMENT_TARGET = 10.13;
180+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
181+
MTL_FAST_MATH = YES;
182+
ONLY_ACTIVE_ARCH = YES;
183+
SDKROOT = macosx;
184+
};
185+
name = Debug;
186+
};
187+
F5FE29A621F14A1B00A21304 /* Release */ = {
188+
isa = XCBuildConfiguration;
189+
buildSettings = {
190+
ALWAYS_SEARCH_USER_PATHS = NO;
191+
CLANG_ANALYZER_NONNULL = YES;
192+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
193+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
194+
CLANG_CXX_LIBRARY = "libc++";
195+
CLANG_ENABLE_MODULES = YES;
196+
CLANG_ENABLE_OBJC_ARC = YES;
197+
CLANG_ENABLE_OBJC_WEAK = YES;
198+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
199+
CLANG_WARN_BOOL_CONVERSION = YES;
200+
CLANG_WARN_COMMA = YES;
201+
CLANG_WARN_CONSTANT_CONVERSION = YES;
202+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
203+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
204+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
205+
CLANG_WARN_EMPTY_BODY = YES;
206+
CLANG_WARN_ENUM_CONVERSION = YES;
207+
CLANG_WARN_INFINITE_RECURSION = YES;
208+
CLANG_WARN_INT_CONVERSION = YES;
209+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
210+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
211+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
212+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
213+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
214+
CLANG_WARN_STRICT_PROTOTYPES = YES;
215+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
216+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
217+
CLANG_WARN_UNREACHABLE_CODE = YES;
218+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
219+
CODE_SIGN_IDENTITY = "-";
220+
COPY_PHASE_STRIP = NO;
221+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
222+
ENABLE_NS_ASSERTIONS = NO;
223+
ENABLE_STRICT_OBJC_MSGSEND = YES;
224+
GCC_C_LANGUAGE_STANDARD = gnu11;
225+
GCC_NO_COMMON_BLOCKS = YES;
226+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
227+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
228+
GCC_WARN_UNDECLARED_SELECTOR = YES;
229+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
230+
GCC_WARN_UNUSED_FUNCTION = YES;
231+
GCC_WARN_UNUSED_VARIABLE = YES;
232+
MACOSX_DEPLOYMENT_TARGET = 10.13;
233+
MTL_ENABLE_DEBUG_INFO = NO;
234+
MTL_FAST_MATH = YES;
235+
SDKROOT = macosx;
236+
};
237+
name = Release;
238+
};
239+
F5FE29A821F14A1B00A21304 /* Debug */ = {
240+
isa = XCBuildConfiguration;
241+
buildSettings = {
242+
CODE_SIGN_STYLE = Automatic;
243+
PRODUCT_NAME = "$(TARGET_NAME)";
244+
};
245+
name = Debug;
246+
};
247+
F5FE29A921F14A1B00A21304 /* Release */ = {
248+
isa = XCBuildConfiguration;
249+
buildSettings = {
250+
CODE_SIGN_STYLE = Automatic;
251+
PRODUCT_NAME = "$(TARGET_NAME)";
252+
};
253+
name = Release;
254+
};
255+
/* End XCBuildConfiguration section */
256+
257+
/* Begin XCConfigurationList section */
258+
F5FE299B21F14A1B00A21304 /* Build configuration list for PBXProject "FindCycleInGraph" */ = {
259+
isa = XCConfigurationList;
260+
buildConfigurations = (
261+
F5FE29A521F14A1B00A21304 /* Debug */,
262+
F5FE29A621F14A1B00A21304 /* Release */,
263+
);
264+
defaultConfigurationIsVisible = 0;
265+
defaultConfigurationName = Release;
266+
};
267+
F5FE29A721F14A1B00A21304 /* Build configuration list for PBXNativeTarget "FindCycleInGraph" */ = {
268+
isa = XCConfigurationList;
269+
buildConfigurations = (
270+
F5FE29A821F14A1B00A21304 /* Debug */,
271+
F5FE29A921F14A1B00A21304 /* Release */,
272+
);
273+
defaultConfigurationIsVisible = 0;
274+
defaultConfigurationName = Release;
275+
};
276+
/* End XCConfigurationList section */
277+
};
278+
rootObject = F5FE299821F14A1B00A21304 /* Project object */;
279+
}

FindCycleInGraph.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>FindCycleInGraph.xcscheme_^#shared#^_</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>0</integer>
11+
</dict>
12+
</dict>
13+
</dict>
14+
</plist>

FindCycleInGraph/main.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//
2+
// main.cpp
3+
// FindCycleInGraph
4+
//
5+
// Created by vlad on 18.01.2019.
6+
// Copyright © 2019 vlad. All rights reserved.
7+
//
8+
9+
#include <iostream>
10+
11+
int main(int argc, const char * argv[]) {
12+
// insert code here...
13+
std::cout << "Hello, World!\n";
14+
return 0;
15+
}

0 commit comments

Comments
 (0)