-
Notifications
You must be signed in to change notification settings - Fork 5
/
Package.swift
31 lines (28 loc) · 1.25 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "RxLifx-Swift",
products: [
.library(name: "RxLifx", targets: ["RxLifx"]),
.library(name: "RxLifxApi", targets: ["RxLifxApi"]),
.library(name: "LifxDomain", targets: ["LifxDomain"]),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.2.0"))
],
targets: [
.target(name: "LifxDomain",dependencies: [], path: "LifxDomain/LifxDomain"),
.testTarget(
name: "LifxDomainTests",
dependencies: ["LifxDomain"], path: "LifxDomain/LifxDomainTests"),
.target(name: "RxLifx",dependencies: ["RxSwift"], path: "RxLifx/RxLifx"),
.testTarget(
name: "RxLifxTests",
dependencies: ["RxLifx", .product(name: "RxTest", package: "RxSwift")], path: "RxLifx/RxLifxTests"),
.target(name: "RxLifxApi",dependencies: ["RxSwift", "LifxDomain", "RxLifx"], path: "RxLifxApi/RxLifxApi"),
.testTarget(
name: "RxLifxApiTests",
dependencies: ["RxLifxApi", .product(name: "RxTest", package: "RxSwift")], path: "RxLifxApi/RxLifxApiTests"),
]
)