-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
44 lines (43 loc) · 1.2 KB
/
Copy pathPackage.swift
File metadata and controls
44 lines (43 loc) · 1.2 KB
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
35
36
37
38
39
40
41
42
43
44
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "RYKit",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13)
],
products: [
.library(name: "RYKit", targets: ["RYKit"]),
.library(name: "RYKitCore", targets: ["RYKitCore"]),
.library(name: "RYKitNetworkHttp", targets: ["RYKitNetworkHttp"]),
.library(name: "RYKitNetworkStomp", targets: ["RYKitNetworkStomp"])
],
targets: [
.target(
name: "RYKitCore",
path: "Classes/Core"
),
.target(
name: "RYKitNetworkHttp",
dependencies: ["RYKitCore"],
path: "Classes/Http"
),
.target(
name: "RYKitNetworkStomp",
dependencies: ["RYKitCore"],
path: "Classes/Stomp"
),
.target(
name: "RYKit",
dependencies: ["RYKitCore", "RYKitNetworkHttp", "RYKitNetworkStomp"],
path: "Classes",
sources: ["RYKit.swift"]
),
.testTarget(
name: "RYKitCoreTests",
dependencies: ["RYKitCore"],
path: "Project/RYKitTests/LogRecorder"
)
]
)