-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathPackage@swift-5.3.swift
More file actions
61 lines (56 loc) · 1.33 KB
/
Copy pathPackage@swift-5.3.swift
File metadata and controls
61 lines (56 loc) · 1.33 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
// swift-tools-version:5.3
import PackageDescription
let pkg = Package(name: "PromiseKit")
pkg.platforms = [
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v2)
]
pkg.products = [
.library(name: "PromiseKit", targets: ["PromiseKit", "PromiseKitObjC"])
]
let pmk: Target = .target(name: "PromiseKit")
pmk.path = "Sources"
pmk.exclude = [
"AnyPromise.m",
"PMKCallVariadicBlock.m",
"dispatch_promise.m",
"join.m",
"when.m",
"NSMethodSignatureForBlock.m",
"after.m",
"hang.m",
"race.m",
"Deprecations.swift",
"Info.plist"
]
let pmkObjc: Target = .target(name: "PromiseKitObjC")
pmkObjc.dependencies = ["PromiseKit"]
pmkObjc.path = "Sources"
pmkObjc.publicHeadersPath = "."
pmkObjc.exclude = [
"PMKCallVariadicBlock.m",
"after.swift",
"AnyPromise.swift",
"Box.swift",
"Catchable.swift",
"Configuration.swift",
"CustomStringConvertible.swift",
"Deprecations.swift",
"Error.swift",
"firstly.swift",
"Guarantee.swift",
"hang.swift",
"Info.plist",
"LogEvent.swift",
"Promise.swift",
"race.swift",
"Resolver.swift",
"Thenable.swift",
"when.swift"
]
pkg.swiftLanguageVersions = [.v4, .v4_2, .v5]
pkg.targets = [
pmk,
pmkObjc,
.testTarget(name: "APlus", dependencies: ["PromiseKit"], path: "Tests/A+", exclude: ["README.md"]),
.testTarget(name: "CorePromise", dependencies: ["PromiseKit"], path: "Tests/CorePromise"),
]