-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempted to fix the issue with package definition
Fixes #51 Signed-off-by: Lukas Kubanek <[email protected]>
- Loading branch information
1 parent
56bfdfc
commit 5a288f4
Showing
4 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,8 @@ | |
/* End PBXContainerItemProxy section */ | ||
|
||
/* Begin PBXFileReference section */ | ||
8024947E2277123600AB44C7 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "[email protected]"; sourceTree = "<group>"; }; | ||
8024947F2277136D00AB44C7 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "[email protected]"; sourceTree = "<group>"; }; | ||
804879371E217C7700AD31A3 /* build.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = build.sh; sourceTree = "<group>"; }; | ||
804879381E217CA100AD31A3 /* validate-playgrounds.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = "validate-playgrounds.sh"; sourceTree = "<group>"; }; | ||
8055B0381E201C5D009DC3EE /* OrderedDictionary.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OrderedDictionary.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
|
@@ -105,6 +107,8 @@ | |
80DE329320F4DD910053EDA7 /* README.md */, | ||
80DE329420F4DD910053EDA7 /* LICENSE.md */, | ||
80DE329220F4CAFA0053EDA7 /* Package.swift */, | ||
8024947E2277123600AB44C7 /* [email protected] */, | ||
8024947F2277136D00AB44C7 /* [email protected] */, | ||
8055B0521E201D24009DC3EE /* Sources */, | ||
80B28EB11E201F72007E3A77 /* Playgrounds */, | ||
8055B0571E201DF3009DC3EE /* Tests */, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// swift-tools-version:4.2 | ||
// swift-tools-version:4 | ||
|
||
import PackageDescription | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// swift-tools-version:4.2 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "OrderedDictionary", | ||
products: [ | ||
.library( | ||
name: "OrderedDictionary", | ||
targets: ["OrderedDictionary"] | ||
) | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target( | ||
name: "OrderedDictionary", | ||
dependencies: [], | ||
path: "Sources" | ||
), | ||
.testTarget( | ||
name: "OrderedDictionaryTests", | ||
dependencies: ["OrderedDictionary"], | ||
path: "Tests" | ||
) | ||
], | ||
swiftLanguageVersions: [.v4, .v4_2] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// swift-tools-version:5.0 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "OrderedDictionary", | ||
products: [ | ||
.library( | ||
name: "OrderedDictionary", | ||
targets: ["OrderedDictionary"] | ||
) | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target( | ||
name: "OrderedDictionary", | ||
dependencies: [], | ||
path: "Sources" | ||
), | ||
.testTarget( | ||
name: "OrderedDictionaryTests", | ||
dependencies: ["OrderedDictionary"], | ||
path: "Tests" | ||
) | ||
], | ||
swiftLanguageVersions: [.v5] | ||
) |