Skip to content

Commit

Permalink
Merge pull request #169 from tonyarnold/swift-pm-product
Browse files Browse the repository at this point in the history
Declare a formal product for Swift Package Manager
  • Loading branch information
srdanrasic authored Oct 6, 2017
2 parents 0fb1cce + 66b4da3 commit 6ee182d
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
import PackageDescription

let package = Package(
name: "ReactiveKit",
targets: [
.target(name: "ReactiveKit", path: "Sources"),
.testTarget(name: "ReactiveKitTests", dependencies: ["ReactiveKit"])
]
name: "ReactiveKit",
products: [
.library(name: "ReactiveKit", targets: ["ReactiveKit"])
],
targets: [
.target(name: "ReactiveKit", path: "Sources"),
.testTarget(name: "ReactiveKitTests", dependencies: ["ReactiveKit"])
]
)

0 comments on commit 6ee182d

Please sign in to comment.