-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPackage.swift
53 lines (49 loc) · 1.39 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
// swift-tools-version:5.10
import PackageDescription
let settings: [SwiftSetting] = [
.enableExperimentalFeature("StrictConcurrency")
]
let package = Package(
name: "GPXKit",
platforms: [
.iOS(.v13),
.macOS(.v10_13),
.watchOS(.v6),
.tvOS(.v12)
],
products: [
.library(
name: "GPXKit",
targets: ["GPXKit"]
)
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.3.3"),
.package(url: "https://github.com/apple/swift-algorithms", from: "1.2.0"),
.package(url: "https://github.com/apple/swift-numerics", from: "1.0.2")
],
targets: [
.target(
name: "GPXKit",
dependencies: [
.product(name: "Algorithms", package: "swift-algorithms")
],
swiftSettings: settings
),
.testTarget(
name: "GPXKitTests",
dependencies: [
"GPXKit",
.product(name: "CustomDump", package: "swift-custom-dump"),
.product(name: "Numerics", package: "swift-numerics")
],
swiftSettings: settings
)
]
)
#if swift(>=5.6)
// Add the documentation compiler plugin if possible
package.dependencies.append(
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.4.3")
)
#endif