Skip to content

Commit cbc7273

Browse files
Merge pull request #1 from pace/spm
Add SPM changes
2 parents d326580 + 27f3abc commit cbc7273

3 files changed

Lines changed: 36 additions & 1 deletion

File tree

Base32.xcodeproj/project.pbxproj

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,14 @@
201201
name = "Supporting Files";
202202
sourceTree = "<group>";
203203
};
204+
49403AE923D3735700539BD3 /* include */ = {
205+
isa = PBXGroup;
206+
children = (
207+
0DDF9108158A1E2800D44611 /* MF_Base32Additions.h */,
208+
);
209+
path = include;
210+
sourceTree = "<group>";
211+
};
204212
C9357C191DCD7B6B007C1419 /* Base32 */ = {
205213
isa = PBXGroup;
206214
children = (
@@ -228,7 +236,7 @@
228236
isa = PBXGroup;
229237
children = (
230238
C996EC671A74F2190076B105 /* Base32.h */,
231-
0DDF9108158A1E2800D44611 /* MF_Base32Additions.h */,
239+
49403AE923D3735700539BD3 /* include */,
232240
0DDF9109158A1E2800D44611 /* MF_Base32Additions.m */,
233241
C996EC651A74F2190076B105 /* Supporting Files */,
234242
);
@@ -439,6 +447,7 @@
439447
ORGANIZATIONNAME = Freshcode;
440448
TargetAttributes = {
441449
0DDF90E1158A1A0F00D44611 = {
450+
DevelopmentTeam = 35MFYY2JY5;
442451
ProvisioningStyle = Manual;
443452
};
444453
5B39F4831DBD04A400CD2DAB = {
@@ -459,6 +468,7 @@
459468
};
460469
C996EC6C1A74F2190076B105 = {
461470
CreatedOnToolsVersion = 6.1.1;
471+
DevelopmentTeam = 35MFYY2JY5;
462472
ProvisioningStyle = Manual;
463473
};
464474
C996EC9E1A7500D30076B105 = {
@@ -606,6 +616,7 @@
606616
isa = XCBuildConfiguration;
607617
baseConfigurationReference = C996EC941A74FA390076B105 /* macOS-Application.xcconfig */;
608618
buildSettings = {
619+
DEVELOPMENT_TEAM = 35MFYY2JY5;
609620
GCC_PREFIX_HEADER = "Base32/Base32-Prefix.pch";
610621
INFOPLIST_FILE = "Base32/Base32-Info.plist";
611622
PRODUCT_BUNDLE_IDENTIFIER = "ca.madefresh.$(PRODUCT_NAME:rfc1034identifier)";
@@ -618,6 +629,7 @@
618629
isa = XCBuildConfiguration;
619630
baseConfigurationReference = C996EC941A74FA390076B105 /* macOS-Application.xcconfig */;
620631
buildSettings = {
632+
DEVELOPMENT_TEAM = 35MFYY2JY5;
621633
GCC_PREFIX_HEADER = "Base32/Base32-Prefix.pch";
622634
INFOPLIST_FILE = "Base32/Base32-Info.plist";
623635
PRODUCT_BUNDLE_IDENTIFIER = "ca.madefresh.$(PRODUCT_NAME:rfc1034identifier)";
@@ -686,13 +698,15 @@
686698
isa = XCBuildConfiguration;
687699
baseConfigurationReference = C99ECD601DCC2E1F00A1BF3C /* Base32Tests-iOS.xcconfig */;
688700
buildSettings = {
701+
DEVELOPMENT_TEAM = 35MFYY2JY5;
689702
};
690703
name = Debug;
691704
};
692705
C996EC7B1A74F2190076B105 /* Release */ = {
693706
isa = XCBuildConfiguration;
694707
baseConfigurationReference = C99ECD601DCC2E1F00A1BF3C /* Base32Tests-iOS.xcconfig */;
695708
buildSettings = {
709+
DEVELOPMENT_TEAM = 35MFYY2JY5;
696710
};
697711
name = Release;
698712
};

Package.swift

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// swift-tools-version:5.1
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "Base32",
6+
platforms: [
7+
.iOS(.v9),
8+
.macOS(.v10_10),
9+
.tvOS(.v9),
10+
.watchOS(.v2)
11+
],
12+
products: [
13+
.library(
14+
name: "Base32",
15+
targets: ["Base32"]),
16+
],
17+
dependencies: [],
18+
targets: [
19+
.target(name: "Base32", dependencies: [], path: "Base32", exclude: ["main.m", "MF_AppDelegate.m"], sources: ["MF_Base32Additions.m"])
20+
]
21+
)

0 commit comments

Comments
 (0)