forked from ngageoint/projections-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproj-ios.podspec
More file actions
26 lines (21 loc) · 974 Bytes
/
proj-ios.podspec
File metadata and controls
26 lines (21 loc) · 974 Bytes
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
Pod::Spec.new do |s|
s.name = 'proj-ios'
s.version = '2.0.4'
s.license = {:type => 'MIT', :file => 'LICENSE' }
s.summary = 'iOS SDK for Projections'
s.homepage = 'https://github.com/ngageoint/projections-ios'
s.authors = { 'NGA' => '', 'BIT Systems' => '', 'Brian Osborn' => 'bosborn@caci.com' }
s.social_media_url = 'https://twitter.com/NGA_GEOINT'
s.source = { :git => 'https://github.com/ngageoint/projections-ios.git', :tag => s.version }
s.requires_arc = true
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.platform = :ios, '12.0'
s.ios.deployment_target = '12.0'
s.source_files = 'proj-ios/**/*.{h,m}'
s.exclude_files = 'proj-ios/**/Info.plist'
s.resource_bundle = { 'proj-ios' => ['proj-ios/**/*.plist'] }
s.frameworks = 'Foundation'
s.libraries = 'sqlite3', 'c++'
s.dependency 'PROJ', '~> 9.4.0'
s.dependency 'crs-ios', '~> 1.0.5'
end