forked from googlemaps/google-maps-ios-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGoogle-Maps-iOS-Utils.podspec
48 lines (40 loc) · 1.69 KB
/
Google-Maps-iOS-Utils.podspec
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
Pod::Spec.new do |s|
s.name = "Google-Maps-iOS-Utils"
s.version = "3.0.2"
s.summary = "A utilities library for use with Google Maps SDK for iOS."
s.description = "
This library contains classes that are useful for a wide range of applications
using the Google Maps SDK for iOS.
It is designed to be used with Google Maps SDK for iOS, but it is not
dependent on it.
"
s.homepage = "https://github.com/googlemaps/google-maps-ios-utils"
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.authors = "Google Inc."
s.platform = :ios, '9.0'
s.source = { :git => "https://github.com/googlemaps/google-maps-ios-utils.git",
:tag => "v#{s.version.to_s}" }
s.requires_arc = true
s.module_name = "GoogleMapsUtils"
s.dependency 'GoogleMaps'
s.static_framework = true
s.subspec 'QuadTree' do |sp|
sp.public_header_files = "src/#{sp.base_name}/**/*.h"
sp.source_files = "src/#{sp.base_name}/**/*.{h,m}"
end
s.subspec 'Clustering' do |sp|
sp.public_header_files = "src/#{sp.base_name}/**/*.h"
sp.source_files = "src/#{sp.base_name}/**/*.{h,m}"
sp.exclude_files = "src/#{sp.base_name}/GMUMarkerClustering.h"
sp.dependency 'Google-Maps-iOS-Utils/QuadTree'
end
s.subspec 'Geometry' do |sp|
sp.public_header_files = "src/#{sp.base_name}/**/*.h"
sp.source_files = "src/#{sp.base_name}/**/*.{h,m}"
end
s.subspec 'Heatmap' do |sp|
sp.public_header_files = "src/#{sp.base_name}/**/*.h"
sp.source_files = "src/#{sp.base_name}/**/*.{h,m}"
sp.dependency 'Google-Maps-iOS-Utils/QuadTree'
end
end