Skip to content

Commit

Permalink
Merge pull request #6 from bellebethcooper/master
Browse files Browse the repository at this point in the history
Create Package.swift
  • Loading branch information
mxcl authored Sep 22, 2020
2 parents b185822 + f625f91 commit 7405e53
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// swift-tools-version:5.1
import PackageDescription

let package = Package(
name: "PMKHealthKit",
products: [
.library(
name: "PMKHealthKit",
targets: ["PMKHealthKit"]),
],
dependencies: [
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6.0.0"),
],
targets: [
.target(
name: "PMKHealthKit",
dependencies: ["PromiseKit"],
path: "Sources"),
.testTarget(
name: "PMKHealthKitTests",
dependencies: ["PMKHealthKit"],
path: "Tests"),
]
)

0 comments on commit 7405e53

Please sign in to comment.