mirror of
https://github.com/uber/RIBs.git
synced 2026-05-17 12:50:36 +00:00
28 lines
606 B
Swift
28 lines
606 B
Swift
// swift-tools-version:5.1
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "RIBs",
|
|
platforms: [
|
|
.iOS(.v9),
|
|
],
|
|
products: [
|
|
.library(name: "RIBs", targets: ["RIBs"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/ReactiveX/RxSwift", from: "6.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "RIBs",
|
|
dependencies: ["RxSwift", "RxRelay"],
|
|
path: "ios/RIBs"
|
|
),
|
|
.testTarget(
|
|
name: "RIBsTests",
|
|
dependencies: ["RIBs"],
|
|
path: "ios/RIBsTests"
|
|
),
|
|
]
|
|
)
|