-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMapMetrics-iOS.podspec
More file actions
41 lines (35 loc) · 1.43 KB
/
Copy pathMapMetrics-iOS.podspec
File metadata and controls
41 lines (35 loc) · 1.43 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
Pod::Spec.new do |spec|
spec.name = "MapMetrics-iOS"
spec.version = "1.0.0"
spec.summary = "MapMetrics SDK - A powerful mapping framework"
spec.description = <<-DESC
MapMetrics provides advanced offline mapping capabilities
with custom features for iOS applications.
DESC
spec.homepage = "https://github.com/MapMetrics/MapMetrics-iOS"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "MapMetrics" => "jack@mapmetrics.org" }
spec.platform = :ios, "12.0"
spec.swift_version = "5.0"
spec.source = {
:git => "https://github.com/MapMetrics/MapMetrics-iOS.git",
:tag => spec.version.to_s
}
spec.vendored_frameworks = "MapMetrics.xcframework"
spec.preserve_paths = "MapMetrics.xcframework"
spec.exclude_files = [
"**/.DS_Store"
]
spec.pod_target_xcconfig = {
"OTHER_LDFLAGS" => "-framework MapMetrics",
"LD_RUNPATH_SEARCH_PATHS" => "@executable_path/Frameworks",
"ENABLE_USER_SCRIPT_SANDBOXING" => "NO"
}
spec.user_target_xcconfig = {
"LD_RUNPATH_SEARCH_PATHS" => "@executable_path/Frameworks"
}
# Matches what the binary actually links (verified with `otool -L`). The SDK
# renders with Metal as of 1.0.0; earlier releases were built against OpenGL ES
# and declared OpenGLES here.
spec.frameworks = 'CoreLocation', 'Metal', 'MetalKit', 'QuartzCore'
end