-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage@swift-5.3.swift
More file actions
102 lines (100 loc) · 2.69 KB
/
Copy pathPackage@swift-5.3.swift
File metadata and controls
102 lines (100 loc) · 2.69 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
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
102
// swift-tools-version:5.3
import PackageDescription
#if os(Linux)
let libraryType: PackageDescription.Product.Library.LibraryType = .dynamic
#else
let libraryType: PackageDescription.Product.Library.LibraryType = .static
#endif
let package = Package(
name: "NordicDFU",
platforms: [
.macOS(.v10_11),
.iOS(.v9),
.tvOS(.v9),
.watchOS(.v2)
],
products: [
.library(
name: "NordicDFU",
type: libraryType,
targets: ["NordicDFU"]
),
.executable(
name: "dfutool",
targets: ["dfutool"]
)
],
dependencies: [
.package(
url: "https://github.com/PureSwift/Bluetooth.git",
.branch("master")
),
.package(
url: "https://github.com/PureSwift/GATT.git",
.branch("master")
),
.package(
url: "https://github.com/PureSwift/BluetoothLinux.git",
.branch("master")
),
.package(
url: "https://github.com/PureSwift/BluetoothDarwin.git",
.branch("master")
),
.package(
name: "ZIPFoundation",
url: "https://github.com/PureSwift/Zip.git",
.branch("master")
)
],
targets: [
.target(
name: "NordicDFU",
dependencies: [
"Bluetooth",
"GATT",
"ZIPFoundation"
]
),
.target(
name: "dfutool",
dependencies: [
"NordicDFU",
"Bluetooth",
.product(
name: "BluetoothGAP",
package: "Bluetooth"
),
.product(
name: "BluetoothGATT",
package: "Bluetooth"
),
.product(
name: "BluetoothHCI",
package: "Bluetooth"
),
.product(
name: "BluetoothLinux",
package: "BluetoothLinux",
condition: .when(platforms: [.linux])
),
.product(
name: "DarwinGATT",
package: "GATT",
condition: .when(platforms: [.macOS])
),
.product(
name: "BluetoothDarwin",
package: "BluetoothDarwin",
condition: .when(platforms: [.macOS])
)
]
),
.testTarget(
name: "NordicDFUTests",
dependencies: [
"NordicDFU"
]
)
]
)