-
Notifications
You must be signed in to change notification settings - Fork 7
/
OSMKit.podspec
24 lines (19 loc) · 898 Bytes
/
OSMKit.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
Pod::Spec.new do |spec|
spec.name = 'OSMKit'
spec.version = '0.2'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/davidchiles/OSMKit'
spec.authors = { 'David Chiles' => 'dwalterc@gmail.com' }
spec.summary = 'OpenStreetMap library for iOS and OS X'
spec.source = { :git => 'https://github.com/davidchiles/OSMKit', :tag => '0.2' }
spec.requires_arc = true
spec.platform = :ios, "7.0"
# spec.dependency "SpatialDBKit"
spec.dependency 'AFNetworking', '~> 2.6'
spec.dependency 'TBXML', '~> 1.5'
spec.dependency 'gtm-oauth', '~> 0.0'
spec.dependency 'KissXML', '~> 5.0'
spec.xcconfig = { 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' }
spec.source_files = 'OSMKit/*.{h,m}','OSMKit/**/*.{h,m}','OSMKit/**/**/*.{h,m}'
spec.public_header_files = 'OSMKit/*.{h}', "OSMKit/**/*.{h}", "OSMKit/**/**/*.{h}"
end