Skip to content

Commit

Permalink
Added type=.dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
manishSan committed Jul 27, 2020
1 parent 61dabd4 commit 288ac92
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ let package = Package(
],
products: ([
[
.library(name: "RxSwift", targets: ["RxSwift"]),
.library(name: "RxCocoa", targets: ["RxCocoa"]),
.library(name: "RxRelay", targets: ["RxRelay"]),
.library(name: "RxBlocking", targets: ["RxBlocking"]),
.library(name: "RxTest", targets: ["RxTest"]),
.library(name: "RxSwift", type: .dynamic, targets: ["RxSwift"]),
.library(name: "RxCocoa", type: .dynamic, targets: ["RxCocoa"]),
.library(name: "RxRelay", type: .dynamic, targets: ["RxRelay"]),
.library(name: "RxBlocking", type: .dynamic, targets: ["RxBlocking"]),
.library(name: "RxTest", type: .dynamic, targets: ["RxTest"]),
],
Product.allTests()
] as [[Product]]).flatMap { $0 },
Expand Down

0 comments on commit 288ac92

Please sign in to comment.