forked from ddddxxx/LyricsKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
75 lines (65 loc) · 2.12 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "LyricsKit",
platforms: [
.macOS(.v10_10),
.iOS(.v9),
.tvOS(.v9),
.watchOS(.v2),
],
products: [
.library(
name: "LyricsKit",
targets: ["LyricsCore", "LyricsService"]),
],
dependencies: [
.package(url: "https://github.com/cx-org/CXShim", .upToNextMinor(from: "0.4.0")),
.package(url: "https://github.com/cx-org/CXExtensions", .upToNextMinor(from: "0.4.0")),
.package(url: "https://github.com/ddddxxx/Regex", from: "1.0.1"),
.package(url: "https://github.com/ddddxxx/SwiftCF", .upToNextMinor(from: "0.2.0")),
.package(name: "Gzip", url: "https://github.com/1024jp/GzipSwift", from: "5.0.0"),
],
targets: [
.target(
name: "LyricsCore",
dependencies: ["Regex", "SwiftCF"]),
.target(
name: "LyricsService",
dependencies: ["LyricsCore", "CXShim", "CXExtensions", "Regex", "Gzip"]),
.testTarget(
name: "LyricsKitTests",
dependencies: ["LyricsCore", "LyricsService"],
resources: [.copy("Resources")]),
]
)
enum CombineImplementation {
case combine
case combineX
case openCombine
static var `default`: CombineImplementation {
#if canImport(Combine)
return .combine
#else
return .combineX
#endif
}
init?(_ description: String) {
let desc = description.lowercased().filter(\.isLetter)
switch desc {
case "combine": self = .combine
case "combinex": self = .combineX
case "opencombine": self = .openCombine
default: return nil
}
}
}
extension ProcessInfo {
var combineImplementation: CombineImplementation {
return environment["CX_COMBINE_IMPLEMENTATION"].flatMap(CombineImplementation.init) ?? .default
}
}
import Foundation
if ProcessInfo.processInfo.combineImplementation == .combine {
package.platforms = [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6)]
}