forked from mousebird-consulting-inc/WhirlyGlobe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWhirlyGlobe.podspec
28 lines (22 loc) · 1.06 KB
/
WhirlyGlobe.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
Pod::Spec.new do |s|
s.name = "WhirlyGlobe"
s.version = "2.0"
s.summary = "WhirlyGlobe is a self contained 3D earth display view suitable for use in iPhone and iPad applications."
s.homepage = "https://github.com/mousebird/WhirlyGlobe"
s.license = { :type => "Apache 2.0" }
s.author = { "Steve Gifford" => "sjg@mousebirdconsulting.com" }
s.source = { :git => "https://github.com/mousebird/WhirlyGlobe.git", :tag => "v2.0" }
s.platform = :ios
s.source_files = 'WhirlyGlobeSrc/{WhirlyGlobeLib,WhirlyGlobeComponent}/{src,include}/**/*.{mm,m,h}'
s.public_header_files = FileList['WhirlyGlobeSrc/{WhirlyGlobeLib,WhirlyGlobeComponent}/include/**/*.{h}'].exclude(/private/)
s.requires_arc = true
s.dependency 'eigen'
s.dependency 'boost/shared_ptr-includes'
s.dependency 'boost/pointer_cast-includes'
s.dependency 'proj4'
s.dependency 'shapelib'
s.dependency 'clipper', '4.3.0'
s.dependency 'boost/math-includes'
s.library = 'stdc++', 'sqlite3'
s.frameworks = 'UIKit', 'QuartzCore', 'OpenGLES'
end