forked from poulpix/PXGoogleDirections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPXGoogleDirections.podspec
25 lines (21 loc) · 1.42 KB
/
PXGoogleDirections.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
Pod::Spec.new do |s|
s.name = 'PXGoogleDirections'
s.version = '1.2.2'
s.homepage = "https://github.com/poulpix/PXGoogleDirections"
s.summary = 'Google Directions API SDK for iOS, entirely written in Swift'
#s.screenshot = ""
s.author = { 'Romain L' => 'dev.romain@me.com' }
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.social_media_url = "https://twitter.com/_RomainL"
s.platforms = { :ios => '8.0' }
s.ios.deployment_target = '8.0'
s.source_files = 'PXGoogleDirections/*.{h,swift}'
s.module_name = 'PXGoogleDirections'
s.source = { :git => "https://github.com/poulpix/PXGoogleDirections.git", :tag => "1.2.2" }
s.requires_arc = true
s.libraries = "c++", "icucore", "z"
s.frameworks = "Accelerate", "AVFoundation", "CoreBluetooth", "CoreData", "CoreLocation", "CoreText", "Foundation", "GLKit", "ImageIO", "OpenGLES", "QuartzCore", "Security", "SystemConfiguration", "CoreGraphics", "GoogleMaps"
s.resource_bundles = { 'GoogleMaps' => ['Pods/GoogleMaps/Frameworks/GoogleMaps.framework/Resources/*.bundle'] }
s.vendored_frameworks = "Dependencies/GoogleMaps.framework"
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(PODS_ROOT)/PXGoogleDirections/Dependencies' }
end