-
Notifications
You must be signed in to change notification settings - Fork 473
Expand file tree
/
Copy pathPackage.swift
More file actions
47 lines (45 loc) · 1.7 KB
/
Copy pathPackage.swift
File metadata and controls
47 lines (45 loc) · 1.7 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
// 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",
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"),
// SwiftLint command plugin used by CI/local lint commands only.
// We do not attach it as a build tool plugin to avoid affecting build outputs.
.package(url: "https://github.com/SimplyDanny/SwiftLintPlugins", from: "0.63.2"),
],
targets: [
.target(
name: "CocoaMQTT",
dependencies: ["MqttCocoaAsyncSocket"],
path: "Source",
exclude: ["CocoaMQTTWebSocket.swift"],
swiftSettings: [.define("IS_SWIFT_PACKAGE")]
),
.target(
name: "CocoaMQTTWebSocket",
dependencies: ["CocoaMQTT", "Starscream"],
path: "Source",
sources: ["CocoaMQTTWebSocket.swift"],
swiftSettings: [.define("IS_SWIFT_PACKAGE")]
),
.testTarget(
name: "CocoaMQTTTests",
dependencies: ["CocoaMQTT", "CocoaMQTTWebSocket"],
path: "CocoaMQTTTests",
swiftSettings: [.define("IS_SWIFT_PACKAGE")]
)
]
)