-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
73 lines (60 loc) · 1.91 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
// swift-tools-version:5.10
import Foundation
import PackageDescription
// MARK: - Foundation extensions
extension ProcessInfo {
static var useLocalDeps: Bool {
ProcessInfo.processInfo.environment["SPM_USE_LOCAL_DEPS"] == "true"
}
}
// MARK: - PackageDescription extensions
extension SwiftSetting {
static let localSwiftSettings: SwiftSetting = .unsafeFlags([
"-Xfrontend",
"-warn-long-expression-type-checking=10",
])
}
// MARK: - PackageDescription extensions
extension [PackageDescription.Package.Dependency] {
static let local: [PackageDescription.Package.Dependency] =
[
.package(name: "WrkstrmFoundation", path: "../../universal/WrkstrmFoundation")
]
static let remote: [PackageDescription.Package.Dependency] =
[
.package(url: "https://github.com/wrkstrm/WrkstrmFoundation.git", from: "0.4.0")
]
}
// MARK: - Configuration Service
struct ConfigurationService {
let swiftSettings: [SwiftSetting]
let dependencies: [PackageDescription.Package.Dependency]
private static let local: ConfigurationService = .init(
swiftSettings: [.localSwiftSettings],
dependencies: .local
)
private static let remote: ConfigurationService = .init(swiftSettings: [], dependencies: .remote)
static let shared: ConfigurationService = ProcessInfo.useLocalDeps ? .local : .remote
}
let package = Package(
name: "WrkstrmColor",
platforms: [
.iOS(.v16),
.macOS(.v13),
.tvOS(.v16),
.watchOS(.v9),
],
products: [
.library(name: "WrkstrmColor", targets: ["WrkstrmColor"])
],
dependencies: ConfigurationService.shared.dependencies,
targets: [
.target(name: "WrkstrmColor", swiftSettings: ConfigurationService.shared.swiftSettings),
.testTarget(
name: "WrkstrmColorTests",
dependencies: ["WrkstrmColor", "WrkstrmFoundation"],
resources: [.process("Resources")],
swiftSettings: ConfigurationService.shared.swiftSettings
),
]
)