Skip to content

Commit

Permalink
Merge pull request duemunk#141 from colemcampbell/swiftpm
Browse files Browse the repository at this point in the history
Configure Swift package for Swift 5.1
  • Loading branch information
duemunk authored Oct 30, 2019
2 parents 2c80f41 + 71415ad commit bd78885
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 16 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// swift-tools-version:5.1
//
// Async.swift
//
Expand All @@ -23,9 +24,21 @@
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


import PackageDescription

let package = Package(
name: "Async"
)
name: "Async",
platforms: [
.macOS(.v10_10),
.iOS(.v8),
.watchOS(.v3),
.tvOS(.v9),
],
products: [
.library(name: "Async", targets: ["Async"]),
],
targets: [
.target(name: "Async"),
.testTarget(name: "AsyncTests", dependencies: ["Async"])
]
)

0 comments on commit bd78885

Please sign in to comment.