Created
January 30, 2013 18:49
-
-
Save pablasso/4675648 to your computer and use it in GitHub Desktop.
Pod spec for WhirlyGlobe by @jcollas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "WhirlyGlobe" | |
s.version = "2.1" | |
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" => "[email protected]" } | |
s.source = { :git => "https://github.com/jcollas/WhirlyGlobe.git", :branch => "develop" } | |
s.platform = :ios | |
s.source_files = 'WhirlyGlobeSrc/{WhirlyGlobeLib,WhirlyGlobe-MaplyComponent}/{src,include}/**/*.{mm,m,h}' | |
s.public_header_files = FileList['WhirlyGlobeSrc/{WhirlyGlobeLib,WhirlyGlobe-MaplyComponent}/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' | |
s.dependency 'boost/math-includes' | |
s.library = 'stdc++', 'sqlite3' | |
s.frameworks = 'UIKit', 'QuartzCore', 'OpenGLES' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment