generated from StanfordBDHG/SwiftPackageTemplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
115 lines (108 loc) · 4.46 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// swift-tools-version:6.0
//
// This source file is part of the Stanford SpeziDevices open source project
//
// SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md)
//
// SPDX-License-Identifier: MIT
//
import class Foundation.ProcessInfo
import PackageDescription
let package = Package(
name: "SpeziDevices",
defaultLocalization: "en",
platforms: [
.iOS(.v17),
.visionOS(.v1)
],
products: [
.library(name: "SpeziDevices", targets: ["SpeziDevices"]),
.library(name: "SpeziDevicesUI", targets: ["SpeziDevicesUI"]),
.library(name: "SpeziOmron", targets: ["SpeziOmron"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-collections.git", from: "1.1.1"),
.package(url: "https://github.com/StanfordSpezi/SpeziFoundation.git", from: "2.0.0-beta.1"),
.package(url: "https://github.com/StanfordSpezi/Spezi.git", from: "1.7.1"),
.package(url: "https://github.com/StanfordSpezi/SpeziViews.git", from: "1.5.0"),
.package(url: "https://github.com/StanfordSpezi/SpeziBluetooth.git", from: "3.0.1"),
.package(url: "https://github.com/StanfordSpezi/SpeziNetworking.git", from: "2.1.1"),
.package(url: "https://github.com/StanfordBDHG/XCTestExtensions.git", from: "1.0.0")
] + swiftLintPackage(),
targets: [
.target(
name: "SpeziDevices",
dependencies: [
.product(name: "OrderedCollections", package: "swift-collections"),
.product(name: "SpeziFoundation", package: "SpeziFoundation"),
.product(name: "SpeziBluetooth", package: "SpeziBluetooth"),
.product(name: "SpeziBluetoothServices", package: "SpeziBluetooth"),
.product(name: "SpeziViews", package: "SpeziViews"),
.product(name: "Spezi", package: "Spezi")
],
plugins: [] + swiftLintPlugin()
),
.target(
name: "SpeziDevicesUI",
dependencies: [
.target(name: "SpeziDevices"),
.product(name: "SpeziViews", package: "SpeziViews"),
.product(name: "SpeziValidation", package: "SpeziViews"),
.product(name: "SpeziBluetooth", package: "SpeziBluetooth")
],
resources: [
.process("Resources")
],
plugins: [] + swiftLintPlugin()
),
.target(
name: "SpeziOmron",
dependencies: [
.target(name: "SpeziDevices"),
.product(name: "SpeziBluetooth", package: "SpeziBluetooth"),
.product(name: "SpeziBluetoothServices", package: "SpeziBluetooth")
],
resources: [
.process("Resources")
],
plugins: [] + swiftLintPlugin()
),
.testTarget(
name: "SpeziDevicesTests",
dependencies: [
.target(name: "SpeziDevices"),
.product(name: "SpeziFoundation", package: "SpeziFoundation"),
.product(name: "XCTSpezi", package: "Spezi"),
.product(name: "SpeziBluetooth", package: "SpeziBluetooth"),
.product(name: "SpeziBluetoothServices", package: "SpeziBluetooth"),
.product(name: "XCTestExtensions", package: "XCTestExtensions")
],
plugins: [] + swiftLintPlugin()
),
.testTarget(
name: "SpeziOmronTests",
dependencies: [
.target(name: "SpeziOmron"),
.product(name: "SpeziBluetooth", package: "SpeziBluetooth"),
.product(name: "XCTByteCoding", package: "SpeziNetworking"),
.product(name: "XCTestExtensions", package: "XCTestExtensions")
],
plugins: [] + swiftLintPlugin()
)
]
)
func swiftLintPlugin() -> [Target.PluginUsage] {
// Fully quit Xcode and open again with `open --env SPEZI_DEVELOPMENT_SWIFTLINT /Applications/Xcode.app`
if ProcessInfo.processInfo.environment["SPEZI_DEVELOPMENT_SWIFTLINT"] != nil {
[.plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLint")]
} else {
[]
}
}
func swiftLintPackage() -> [PackageDescription.Package.Dependency] {
if ProcessInfo.processInfo.environment["SPEZI_DEVELOPMENT_SWIFTLINT"] != nil {
[.package(url: "https://github.com/realm/SwiftLint.git", from: "0.55.1")]
} else {
[]
}
}