-
Notifications
You must be signed in to change notification settings - Fork 475
Expand file tree
/
Copy pathPackage.swift
More file actions
49 lines (47 loc) · 1.77 KB
/
Copy pathPackage.swift
File metadata and controls
49 lines (47 loc) · 1.77 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.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "CocoaMQTT",
// visionOS is supported through SwiftPM and compiled in CI. An explicit
// declaration requires PackageDescription 5.9, while this manifest
// intentionally remains compatible with Swift tools 5.7.
platforms: [
.macOS(.v10_13),
.iOS(.v12),
.tvOS(.v12)
],
products: [
.library(name: "CocoaMQTT", targets: ["CocoaMQTT"]),
.library(name: "CocoaMQTTWebSocket", targets: ["CocoaMQTTWebSocket"])
],
dependencies: [
// Allow Starscream 4.x and 5.x to avoid version conflicts in client apps
.package(url: "https://github.com/daltoniam/Starscream.git", "4.0.8"..<"6.0.0"),
.package(url: "https://github.com/leeway1208/MqttCocoaAsyncSocket", from: "1.0.8"),
],
targets: [
.target(
name: "CocoaMQTT",
dependencies: ["MqttCocoaAsyncSocket"],
path: "Source",
exclude: ["Info.plist", "WebSocket"],
resources: [.copy("PrivacyInfo.xcprivacy")],
swiftSettings: [.define("IS_SWIFT_PACKAGE")]
),
.target(
name: "CocoaMQTTWebSocket",
dependencies: ["CocoaMQTT", "Starscream"],
path: "Source/WebSocket",
swiftSettings: [.define("IS_SWIFT_PACKAGE")]
),
.testTarget(
name: "CocoaMQTTTests",
dependencies: ["CocoaMQTT", "CocoaMQTTWebSocket"],
path: "CocoaMQTTTests",
exclude: ["Info.plist"],
resources: [.copy("client-keycert.p12")],
swiftSettings: [.define("IS_SWIFT_PACKAGE")]
)
]
)