diff options
author | Justin R. Miller <incanus@codesorcery.net> | 2015-08-21 11:01:07 -0700 |
---|---|---|
committer | Justin R. Miller <incanus@codesorcery.net> | 2015-08-21 11:01:07 -0700 |
commit | 3f99f5e712000f6b3b469c566e57ddd05dcff3e8 (patch) | |
tree | 3224981a4dbad62aa01c80a26ed8d045de2098dd /ios/Mapbox-iOS-SDK.podspec | |
parent | 6d1c10dc1884712a66e7231cc18ecf1e21414b77 (diff) | |
download | qtlocation-mapboxgl-3f99f5e712000f6b3b469c566e57ddd05dcff3e8.tar.gz |
GL is the library, SDK is the product
Diffstat (limited to 'ios/Mapbox-iOS-SDK.podspec')
-rw-r--r-- | ios/Mapbox-iOS-SDK.podspec | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/ios/Mapbox-iOS-SDK.podspec b/ios/Mapbox-iOS-SDK.podspec new file mode 100644 index 0000000000..7b30444c96 --- /dev/null +++ b/ios/Mapbox-iOS-SDK.podspec @@ -0,0 +1,38 @@ +Pod::Spec.new do |m| + + m.name = 'Mapbox-iOS-SDK' + m.version = '0.5.4-symbols' + + m.summary = 'Open source vector map solution for iOS with full styling capabilities.' + m.description = 'Open source OpenGL-based vector map solution for iOS with full styling capabilities and Cocoa bindings.' + m.homepage = 'https://www.mapbox.com/mapbox-gl-ios/' + m.license = 'BSD' + m.author = { 'Mapbox' => 'mobile@mapbox.com' } + m.screenshot = 'https://raw.githubusercontent.com/mapbox/mapbox-gl-native/master/ios/screenshot.png' + m.social_media_url = 'https://twitter.com/mapbox' + m.documentation_url = 'https://www.mapbox.com/mapbox-gl-ios' + + m.source = { + :http => "http://mapbox.s3.amazonaws.com/mapbox-gl-native/ios/builds/mapbox-gl-ios-#{m.version.to_s}.zip", + :flatten => true + } + + m.platform = :ios + m.ios.deployment_target = '7.0' + + m.requires_arc = true + + m.preserve_paths = '**' + m.source_files = 'Headers/*.h', 'MGLDummy.m' + m.resource_bundle = { 'Mapbox' => 'Mapbox.bundle/*' } + m.vendored_library = 'libMapbox.a' + m.module_name = 'Mapbox' + + m.frameworks = 'CoreLocation', 'CoreTelephony', 'GLKit', 'ImageIO', 'MobileCoreServices', 'QuartzCore', 'SystemConfiguration' + m.libraries = 'c++', 'sqlite3', 'z' + m.xcconfig = { + 'OTHER_CPLUSPLUSFLAGS' => '-std=gnu++11 -stdlib=libc++', + 'OTHER_LDFLAGS' => '-ObjC', + } + +end |