Skip to content

Commit

Permalink
Extended SPM support up to Swift 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaskubanek committed May 21, 2020
1 parent 3820115 commit 6638ffd
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
2 changes: 2 additions & 0 deletions LoremSwiftum.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
808384011BAAB2440075603A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
80863FD21BD7864C00C3D182 /* LoremSwiftum.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LoremSwiftum.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8094DC8724767FD5003F302A /* Package.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Package.swift; sourceTree = "<group>"; };
8094DC8824768C72003F302A /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "[email protected]"; sourceTree = "<group>"; };
80DF35121BF8F082004F17C5 /* LoremSwiftum.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = LoremSwiftum.playground; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.swift; };
/* End PBXFileReference section */

Expand Down Expand Up @@ -75,6 +76,7 @@
8032D7F821749C85000EDF25 /* README.md */,
8032D7F921749C85000EDF25 /* LICENSE.md */,
8094DC8724767FD5003F302A /* Package.swift */,
8094DC8824768C72003F302A /* [email protected] */,
80B67B4219E5603D00D2DEC2 /* Sources */,
802CD5CF1A1EA1A80067165F /* Playgrounds */,
808383FF1BAAB2440075603A /* Supporting Files */,
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.2
// swift-tools-version:5.0

import PackageDescription

Expand Down
22 changes: 22 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// swift-tools-version:4.2

import PackageDescription

let package = Package(
name: "LoremSwiftum",
products: [
.library(
name: "LoremSwiftum",
targets: ["LoremSwiftum"]
)
],
dependencies: [],
targets: [
.target(
name: "LoremSwiftum",
dependencies: [],
path: "Sources"
)
],
swiftLanguageVersions: [.v4, .v4_2]
)

0 comments on commit 6638ffd

Please sign in to comment.