Skip to content

Commit 547314c

Browse files
committed
Add support for Carthage by creating a formal Xcode project for this
repository
1 parent c4d4a8b commit 547314c

File tree

4 files changed

+403
-0
lines changed

4 files changed

+403
-0
lines changed

Src/Info.plist

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleSignature</key>
20+
<string>????</string>
21+
<key>CFBundleVersion</key>
22+
<string>$(CURRENT_PROJECT_VERSION)</string>
23+
<key>NSPrincipalClass</key>
24+
<string></string>
25+
</dict>
26+
</plist>
Lines changed: 290 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,290 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
3E721AC71BF725A2008AF027 /* SwiftyTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E721AC61BF725A2008AF027 /* SwiftyTimer.swift */; };
11+
/* End PBXBuildFile section */
12+
13+
/* Begin PBXFileReference section */
14+
3E721ABB1BF7255D008AF027 /* SwiftyTimer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyTimer.framework; sourceTree = BUILT_PRODUCTS_DIR; };
15+
3E721AC01BF7255D008AF027 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
16+
3E721AC61BF725A2008AF027 /* SwiftyTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftyTimer.swift; sourceTree = "<group>"; };
17+
/* End PBXFileReference section */
18+
19+
/* Begin PBXFrameworksBuildPhase section */
20+
3E721AB71BF7255D008AF027 /* Frameworks */ = {
21+
isa = PBXFrameworksBuildPhase;
22+
buildActionMask = 2147483647;
23+
files = (
24+
);
25+
runOnlyForDeploymentPostprocessing = 0;
26+
};
27+
/* End PBXFrameworksBuildPhase section */
28+
29+
/* Begin PBXGroup section */
30+
3E721AB11BF7255C008AF027 = {
31+
isa = PBXGroup;
32+
children = (
33+
3E721ABD1BF7255D008AF027 /* SwiftyTimer */,
34+
3E721ABC1BF7255D008AF027 /* Products */,
35+
);
36+
sourceTree = "<group>";
37+
};
38+
3E721ABC1BF7255D008AF027 /* Products */ = {
39+
isa = PBXGroup;
40+
children = (
41+
3E721ABB1BF7255D008AF027 /* SwiftyTimer.framework */,
42+
);
43+
name = Products;
44+
sourceTree = "<group>";
45+
};
46+
3E721ABD1BF7255D008AF027 /* SwiftyTimer */ = {
47+
isa = PBXGroup;
48+
children = (
49+
3E721AC61BF725A2008AF027 /* SwiftyTimer.swift */,
50+
3E721AC01BF7255D008AF027 /* Info.plist */,
51+
);
52+
name = SwiftyTimer;
53+
path = Src;
54+
sourceTree = "<group>";
55+
};
56+
/* End PBXGroup section */
57+
58+
/* Begin PBXHeadersBuildPhase section */
59+
3E721AB81BF7255D008AF027 /* Headers */ = {
60+
isa = PBXHeadersBuildPhase;
61+
buildActionMask = 2147483647;
62+
files = (
63+
);
64+
runOnlyForDeploymentPostprocessing = 0;
65+
};
66+
/* End PBXHeadersBuildPhase section */
67+
68+
/* Begin PBXNativeTarget section */
69+
3E721ABA1BF7255D008AF027 /* SwiftyTimer */ = {
70+
isa = PBXNativeTarget;
71+
buildConfigurationList = 3E721AC31BF7255D008AF027 /* Build configuration list for PBXNativeTarget "SwiftyTimer" */;
72+
buildPhases = (
73+
3E721AB61BF7255D008AF027 /* Sources */,
74+
3E721AB71BF7255D008AF027 /* Frameworks */,
75+
3E721AB81BF7255D008AF027 /* Headers */,
76+
3E721AB91BF7255D008AF027 /* Resources */,
77+
);
78+
buildRules = (
79+
);
80+
dependencies = (
81+
);
82+
name = SwiftyTimer;
83+
productName = SwiftyTimer;
84+
productReference = 3E721ABB1BF7255D008AF027 /* SwiftyTimer.framework */;
85+
productType = "com.apple.product-type.framework";
86+
};
87+
/* End PBXNativeTarget section */
88+
89+
/* Begin PBXProject section */
90+
3E721AB21BF7255C008AF027 /* Project object */ = {
91+
isa = PBXProject;
92+
attributes = {
93+
LastUpgradeCheck = 0710;
94+
ORGANIZATIONNAME = "Radosław Pietruszewski";
95+
TargetAttributes = {
96+
3E721ABA1BF7255D008AF027 = {
97+
CreatedOnToolsVersion = 7.1;
98+
};
99+
};
100+
};
101+
buildConfigurationList = 3E721AB51BF7255C008AF027 /* Build configuration list for PBXProject "SwiftyTimer" */;
102+
compatibilityVersion = "Xcode 3.2";
103+
developmentRegion = English;
104+
hasScannedForEncodings = 0;
105+
knownRegions = (
106+
en,
107+
);
108+
mainGroup = 3E721AB11BF7255C008AF027;
109+
productRefGroup = 3E721ABC1BF7255D008AF027 /* Products */;
110+
projectDirPath = "";
111+
projectRoot = "";
112+
targets = (
113+
3E721ABA1BF7255D008AF027 /* SwiftyTimer */,
114+
);
115+
};
116+
/* End PBXProject section */
117+
118+
/* Begin PBXResourcesBuildPhase section */
119+
3E721AB91BF7255D008AF027 /* Resources */ = {
120+
isa = PBXResourcesBuildPhase;
121+
buildActionMask = 2147483647;
122+
files = (
123+
);
124+
runOnlyForDeploymentPostprocessing = 0;
125+
};
126+
/* End PBXResourcesBuildPhase section */
127+
128+
/* Begin PBXSourcesBuildPhase section */
129+
3E721AB61BF7255D008AF027 /* Sources */ = {
130+
isa = PBXSourcesBuildPhase;
131+
buildActionMask = 2147483647;
132+
files = (
133+
3E721AC71BF725A2008AF027 /* SwiftyTimer.swift in Sources */,
134+
);
135+
runOnlyForDeploymentPostprocessing = 0;
136+
};
137+
/* End PBXSourcesBuildPhase section */
138+
139+
/* Begin XCBuildConfiguration section */
140+
3E721AC11BF7255D008AF027 /* Debug */ = {
141+
isa = XCBuildConfiguration;
142+
buildSettings = {
143+
ALWAYS_SEARCH_USER_PATHS = NO;
144+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
145+
CLANG_CXX_LIBRARY = "libc++";
146+
CLANG_ENABLE_MODULES = YES;
147+
CLANG_ENABLE_OBJC_ARC = YES;
148+
CLANG_WARN_BOOL_CONVERSION = YES;
149+
CLANG_WARN_CONSTANT_CONVERSION = YES;
150+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
151+
CLANG_WARN_EMPTY_BODY = YES;
152+
CLANG_WARN_ENUM_CONVERSION = YES;
153+
CLANG_WARN_INT_CONVERSION = YES;
154+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
155+
CLANG_WARN_UNREACHABLE_CODE = YES;
156+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
157+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
158+
COPY_PHASE_STRIP = NO;
159+
CURRENT_PROJECT_VERSION = 1;
160+
DEBUG_INFORMATION_FORMAT = dwarf;
161+
ENABLE_STRICT_OBJC_MSGSEND = YES;
162+
ENABLE_TESTABILITY = YES;
163+
GCC_C_LANGUAGE_STANDARD = gnu99;
164+
GCC_DYNAMIC_NO_PIC = NO;
165+
GCC_NO_COMMON_BLOCKS = YES;
166+
GCC_OPTIMIZATION_LEVEL = 0;
167+
GCC_PREPROCESSOR_DEFINITIONS = (
168+
"DEBUG=1",
169+
"$(inherited)",
170+
);
171+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
172+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
173+
GCC_WARN_UNDECLARED_SELECTOR = YES;
174+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
175+
GCC_WARN_UNUSED_FUNCTION = YES;
176+
GCC_WARN_UNUSED_VARIABLE = YES;
177+
IPHONEOS_DEPLOYMENT_TARGET = 9.1;
178+
MTL_ENABLE_DEBUG_INFO = YES;
179+
ONLY_ACTIVE_ARCH = YES;
180+
SDKROOT = iphoneos;
181+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
182+
TARGETED_DEVICE_FAMILY = "1,2";
183+
VERSIONING_SYSTEM = "apple-generic";
184+
VERSION_INFO_PREFIX = "";
185+
};
186+
name = Debug;
187+
};
188+
3E721AC21BF7255D008AF027 /* Release */ = {
189+
isa = XCBuildConfiguration;
190+
buildSettings = {
191+
ALWAYS_SEARCH_USER_PATHS = NO;
192+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
193+
CLANG_CXX_LIBRARY = "libc++";
194+
CLANG_ENABLE_MODULES = YES;
195+
CLANG_ENABLE_OBJC_ARC = YES;
196+
CLANG_WARN_BOOL_CONVERSION = YES;
197+
CLANG_WARN_CONSTANT_CONVERSION = YES;
198+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
199+
CLANG_WARN_EMPTY_BODY = YES;
200+
CLANG_WARN_ENUM_CONVERSION = YES;
201+
CLANG_WARN_INT_CONVERSION = YES;
202+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
203+
CLANG_WARN_UNREACHABLE_CODE = YES;
204+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
205+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
206+
COPY_PHASE_STRIP = NO;
207+
CURRENT_PROJECT_VERSION = 1;
208+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
209+
ENABLE_NS_ASSERTIONS = NO;
210+
ENABLE_STRICT_OBJC_MSGSEND = YES;
211+
GCC_C_LANGUAGE_STANDARD = gnu99;
212+
GCC_NO_COMMON_BLOCKS = YES;
213+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
214+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
215+
GCC_WARN_UNDECLARED_SELECTOR = YES;
216+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
217+
GCC_WARN_UNUSED_FUNCTION = YES;
218+
GCC_WARN_UNUSED_VARIABLE = YES;
219+
IPHONEOS_DEPLOYMENT_TARGET = 9.1;
220+
MTL_ENABLE_DEBUG_INFO = NO;
221+
SDKROOT = iphoneos;
222+
TARGETED_DEVICE_FAMILY = "1,2";
223+
VALIDATE_PRODUCT = YES;
224+
VERSIONING_SYSTEM = "apple-generic";
225+
VERSION_INFO_PREFIX = "";
226+
};
227+
name = Release;
228+
};
229+
3E721AC41BF7255D008AF027 /* Debug */ = {
230+
isa = XCBuildConfiguration;
231+
buildSettings = {
232+
CLANG_ENABLE_MODULES = YES;
233+
DEFINES_MODULE = YES;
234+
DYLIB_COMPATIBILITY_VERSION = 1;
235+
DYLIB_CURRENT_VERSION = 1;
236+
DYLIB_INSTALL_NAME_BASE = "@rpath";
237+
INFOPLIST_FILE = "$(SRCROOT)/Src/Info.plist";
238+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
239+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
240+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
241+
PRODUCT_BUNDLE_IDENTIFIER = io.radex.SwiftyTimer;
242+
PRODUCT_NAME = "$(TARGET_NAME)";
243+
SKIP_INSTALL = YES;
244+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
245+
};
246+
name = Debug;
247+
};
248+
3E721AC51BF7255D008AF027 /* Release */ = {
249+
isa = XCBuildConfiguration;
250+
buildSettings = {
251+
CLANG_ENABLE_MODULES = YES;
252+
DEFINES_MODULE = YES;
253+
DYLIB_COMPATIBILITY_VERSION = 1;
254+
DYLIB_CURRENT_VERSION = 1;
255+
DYLIB_INSTALL_NAME_BASE = "@rpath";
256+
INFOPLIST_FILE = "$(SRCROOT)/Src/Info.plist";
257+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
258+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
259+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
260+
PRODUCT_BUNDLE_IDENTIFIER = io.radex.SwiftyTimer;
261+
PRODUCT_NAME = "$(TARGET_NAME)";
262+
SKIP_INSTALL = YES;
263+
};
264+
name = Release;
265+
};
266+
/* End XCBuildConfiguration section */
267+
268+
/* Begin XCConfigurationList section */
269+
3E721AB51BF7255C008AF027 /* Build configuration list for PBXProject "SwiftyTimer" */ = {
270+
isa = XCConfigurationList;
271+
buildConfigurations = (
272+
3E721AC11BF7255D008AF027 /* Debug */,
273+
3E721AC21BF7255D008AF027 /* Release */,
274+
);
275+
defaultConfigurationIsVisible = 0;
276+
defaultConfigurationName = Release;
277+
};
278+
3E721AC31BF7255D008AF027 /* Build configuration list for PBXNativeTarget "SwiftyTimer" */ = {
279+
isa = XCConfigurationList;
280+
buildConfigurations = (
281+
3E721AC41BF7255D008AF027 /* Debug */,
282+
3E721AC51BF7255D008AF027 /* Release */,
283+
);
284+
defaultConfigurationIsVisible = 0;
285+
defaultConfigurationName = Release;
286+
};
287+
/* End XCConfigurationList section */
288+
};
289+
rootObject = 3E721AB21BF7255C008AF027 /* Project object */;
290+
}

SwiftyTimer.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.

0 commit comments

Comments
 (0)