forked from SpotIM/spotim-ios-sdk-pod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
34 lines (33 loc) · 931 Bytes
/
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
32
33
34
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "SpotIMCore",
platforms: [
.iOS(.v12)
],
products: [
.library(name: "SpotIMCore", targets: ["SpotImWrapperSPMTarget"])
],
dependencies: [
// Here we define our package's external dependencies
// and from where they can be fetched:
.package(
url: "https://github.com/ReactiveX/RxSwift.git",
.upToNextMinor(from: "6.5.0")
)
],
targets: [
.binaryTarget(
name: "SpotImCore",
path: "SpotImCore.xcframework"
),
.target(
name: "SpotImWrapperSPMTarget",
dependencies: [
.target(name: "SpotImCore", condition: .when(platforms: .some([.iOS]))),
"RxSwift",
.product(name: "RxCocoa", package: "RxSwift")
]
)
]
)