-
Notifications
You must be signed in to change notification settings - Fork 313
/
Package.swift
144 lines (140 loc) · 4.96 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// swift-tools-version:5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let (navNativeVersion, navNativeChecksum, navNativeRevision) = ("321.0.0", "2c9ae6e116d90f1153bd365f7559bf572c2c827b039d24938698521f5a5e8c99", "730e5fef0c4a0564bfbf58fce54914e9ede9f776")
let mapsVersion: Version = "11.8.0"
let package = Package(
name: "MapboxNavigation",
defaultLocalization: "en",
// The Nav SDK doesn't support macOS but declared the minimum macOS requirement with downstream deps to enable `swift run` cli tools
platforms: [.iOS(.v14), .macOS(.v10_15)],
products: [
.library(
name: "MapboxNavigationUIKit",
targets: ["MapboxNavigationUIKit"]
),
.library(
name: "MapboxNavigationCore",
targets: ["MapboxNavigationCore"]
),
.library(
name: "_MapboxNavigationTestKit",
targets: ["_MapboxNavigationTestKit"]
),
.executable(
name: "mapbox-directions-swift",
targets: ["MapboxDirectionsCLI"]),
],
dependencies: [
.package(url: "https://github.com/mapbox/mapbox-navigation-native-ios.git", revision: navNativeRevision),
.package(url: "https://github.com/mapbox/mapbox-maps-ios.git", exact: mapsVersion),
.package(url: "https://github.com/mapbox/turf-swift.git", exact: "3.0.0"),
.package(url: "https://github.com/AliSoftware/OHHTTPStubs", from: "9.1.0"),
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", exact: "1.12.0"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.0"),
],
targets: [
.target(
name: "MapboxNavigationUIKit",
dependencies: [
"MapboxNavigationCore",
],
exclude: ["Info.plist"],
resources: [
.copy("Resources/MBXInfo.plist"),
.copy("Resources/PrivacyInfo.xcprivacy")
]
),
.target(name: "_MapboxNavigationHelpers"),
.target(
name: "MapboxNavigationCore",
dependencies: [
"_MapboxNavigationHelpers",
.product(name: "MapboxNavigationNative", package: "mapbox-navigation-native-ios"),
"MapboxDirections",
.product(name: "MapboxMaps", package: "mapbox-maps-ios"),
],
resources: [
.process("Resources")
]
),
.target(
name: "MapboxDirections",
dependencies: [
.product(name: "Turf", package: "turf-swift"),
]
),
// Test targets
.testTarget(
name: "MapboxNavigationCoreTests",
dependencies: [
"MapboxNavigationCore",
"_MapboxNavigationTestHelpers",
],
resources: [
.copy("Fixtures"),
.process("Resources"),
]
),
.target(
name: "_MapboxNavigationTestHelpers",
dependencies: [
"MapboxNavigationCore"
]
),
.testTarget(
name: "MapboxDirectionsTests",
dependencies: [
"MapboxDirections",
.product(name: "OHHTTPStubsSwift", package: "OHHTTPStubs"),
],
resources: [.process("Fixtures")]
),
.target(
name: "TestHelper",
dependencies: [
"MapboxNavigationCore",
"MapboxNavigationUIKit",
],
exclude: ["Info.plist"],
resources: [
.process("Fixtures"),
]
),
.target(
name: "CarPlayTestHelper",
exclude: [
"Info.plist",
"CarPlayTestHelper.h",
]
),
.testTarget(
name: "MapboxNavigationPackageTests",
dependencies: [
"MapboxNavigationUIKit",
"TestHelper",
"CarPlayTestHelper",
.product(name: "SnapshotTesting", package: "swift-snapshot-testing"),
.product(name: "OHHTTPStubsSwift", package: "OHHTTPStubs"),
],
exclude: [
"Info.plist",
"__Snapshots__", // Ignore snapshots folder
]
),
.target(
name: "_MapboxNavigationTestKit",
dependencies: [
.product(name: "SnapshotTesting", package: "swift-snapshot-testing"),
"_MapboxNavigationTestHelpers",
],
path: "Sources/.empty/_MapboxNavigationTestKit"
),
.executableTarget(
name: "MapboxDirectionsCLI",
dependencies: [
"MapboxDirections",
.product(name: "ArgumentParser", package: "swift-argument-parser")
]),
]
)