-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
59 lines (55 loc) · 1.63 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
// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "here-map-package",
platforms: [.iOS(.v15), .macOS(.v11)],
products: [
.library(
name: "GoogleMapsPackage",
targets: ["GoogleMapTarget"]
),
.library(
name: "MapboxPackage",
targets: ["MapboxTarget"]
),
.library(
name: "HereMapPackage",
targets: ["HereMapTarget"]
)
],
dependencies: [
.package(url: "https://github.com/googlemaps/ios-maps-sdk", from: "9.3.0"),
.package(url: "https://github.com/mapbox/mapbox-maps-ios", from: "11.10.0"),
],
targets: [
// ✅ Google Maps Target
.target(
name: "GoogleMapTarget",
dependencies: [
.product(name: "GoogleMaps", package: "ios-maps-sdk")
],
path: "Sources/GoogleMaps"
),
// ✅ Mapbox Target
.target(
name: "MapboxTarget",
dependencies: [
.product(name: "MapboxMaps", package: "mapbox-maps-ios")
],
path: "Sources/Mapbox"
),
// ✅ HERE Maps Target (Fix)
.target(
name: "HereMapTarget",
dependencies: [
.target(name: "HereSDKBinary") // Link the binary framework
],
path: "Sources/HereMaps" // Ensure your Here Maps source files exist
),
// ✅ Binary Target for HERE SDK
.binaryTarget(
name: "HereSDKBinary",
path: "Frameworks/heresdk.xcframework"
)
]
)