-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
49 lines (48 loc) · 1.38 KB
/
Copy pathPackage.swift
File metadata and controls
49 lines (48 loc) · 1.38 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
45
46
47
48
49
// swift-tools-version:5.9
// 此 Package.swift 僅供 SourceKit-LSP 索引使用(語法檢查/函數跳轉)
// 無法在 Windows/Linux 上實際編譯(需 Apple SDK)
import PackageDescription
let package = Package(
name: "ReplyKit",
platforms: [
.iOS(.v17),
.macOS(.v14)
],
dependencies: [
.package(url: "https://github.com/TwhomeGH/HaishinKitFixSwfit.git", branch: "main")
],
targets: [
.target(
name: "liveAPP",
dependencies: [],
path: "liveAPP",
exclude: [
"Config.xcconfig",
"liveAPP.entitlements",
"Info.plist",
"Assets.xcassets"
]
),
.target(
name: "ReplyKIT",
dependencies: [
.product(name: "HaishinKit", package: "HaishinKitFixSwfit"),
.product(name: "RTMPHaishinKit", package: "HaishinKitFixSwfit")
],
path: "ReplyKIT",
exclude: ["Info.plist"]
),
.target(
name: "ReplyKITSetupUI",
dependencies: [],
path: "ReplyKITSetupUI",
exclude: ["Info.plist"]
),
.target(
name: "ReplyKITNotification",
dependencies: [],
path: "ReplyKITNotification",
exclude: ["Info.plist"]
)
]
)