-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
101 lines (98 loc) · 2.93 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "linphonesw",
defaultLocalization: "en",
platforms: [
.iOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(name: "linphonesw", targets: ["linphonesw"])
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "linphonesw",
dependencies: [
"linphone",
"bctoolbox-ios",
"bctoolbox",
"belcard",
"belr",
"belle-sip",
"lime",
"mediastreamer2",
"msamr",
"mscodec2",
"msopenh264",
"mssilk",
"mswebrtc",
"ortp",
"ZXing"
]
),
.binaryTarget(
name: "linphone",
path: "XCFrameworks/linphone.xcframework"
),
.binaryTarget(
name: "bctoolbox-ios",
path: "XCFrameworks/bctoolbox-ios.xcframework"
),
.binaryTarget(
name: "bctoolbox",
path: "XCFrameworks/bctoolbox.xcframework"
),
.binaryTarget(
name: "belcard",
path: "XCFrameworks/belcard.xcframework"
),
.binaryTarget(
name: "belr",
path: "XCFrameworks/belr.xcframework"
),
.binaryTarget(
name: "belle-sip",
path: "XCFrameworks/belle-sip.xcframework"
),
.binaryTarget(
name: "lime",
path: "XCFrameworks/lime.xcframework"
),
.binaryTarget(
name: "mediastreamer2",
path: "XCFrameworks/mediastreamer2.xcframework"
),
.binaryTarget(
name: "msamr",
path: "XCFrameworks/msamr.xcframework"
),
.binaryTarget(
name: "mscodec2",
path: "XCFrameworks/mscodec2.xcframework"
),
.binaryTarget(
name: "msopenh264",
path: "XCFrameworks/msopenh264.xcframework"
),
.binaryTarget(
name: "mssilk",
path: "XCFrameworks/mssilk.xcframework"
),
.binaryTarget(
name: "mswebrtc",
path: "XCFrameworks/mswebrtc.xcframework"
),
.binaryTarget(
name: "ortp",
path: "XCFrameworks/ortp.xcframework"
),
.binaryTarget(
name: "ZXing",
path: "XCFrameworks/ZXing.xcframework"
)
]
)