-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
48 lines (45 loc) · 1.57 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
// swift-tools-version: 5.6
import PackageDescription
let package = Package(
name: "YandexMapsMobileNavikit",
defaultLocalization: "en",
platforms: [.iOS("12.0")],
products: [
.library(
name: "YandexMapsMobileNavikit",
type: .static,
targets: [
"YandexMapsMobileNavikit",
"YandexMapsMobileNavikitResources"
]
),
],
targets: [
.binaryTarget(
name: "YandexMapsMobileNavikit",
url: "https://maps-ios-pods-public.s3.yandex.net/YandexMapsMobile-4.13.0-navikit.framework.zip",
checksum: "e5a03387cb30dc1144d899b43fecc9b1d65b3fc564e3f53a6551afaf97396f98"
),
.target(
name: "YandexMapsMobileNavikitResources",
path: "Resources",
resources: [.process("Contents")],
linkerSettings: [
.linkedFramework("CoreFoundation"),
.linkedFramework("Foundation"),
.linkedFramework("CoreLocation"),
.linkedFramework("UIKit"),
.linkedFramework("OpenGLES"),
.linkedFramework("SystemConfiguration"),
.linkedFramework("CoreGraphics"),
.linkedFramework("QuartzCore"),
.linkedFramework("Security"),
.linkedFramework("CoreTelephony"),
.linkedFramework("CoreMotion"),
.linkedFramework("DeviceCheck"),
.linkedLibrary("resolv"),
.linkedLibrary("c++"),
]
)
]
)