-
Notifications
You must be signed in to change notification settings - Fork 0
/
OrionSDK.podspec
23 lines (23 loc) · 996 Bytes
/
OrionSDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'OrionSDK'
s.version = '1.1.1'
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Copyright 2016 Finwe Ltd, Inc. All rights reserved.
LICENSE
}
s.summary = 'OrionSDK_iOS containing components for panorama video'
s.homepage = 'https://github.com/FinweLtd/OrionSDK_iOS_Prd'
s.documentation_url = 'https://github.com/FinweLtd/OrionSDK_iOS_Prd/wiki'
s.author = { 'Hannu Limma' => '[email protected]' }
s.platform = :ios
s.source = { :git => 'https://github.com/FinweLtd/OrionSDK_iOS_Prd.git', :tag => "#{s.version}" }
s.source_files = 'OrionSDK/Headers/*.h'
s.preserve_paths = 'OrionSDK/libOrionSDK.a'
s.vendored_libraries = 'OrionSDK/libOrionSDK.a'
s.frameworks = 'UIKit', 'Foundation', 'CoreMotion', 'OpenAL', 'AudioToolbox'
s.requires_arc = true
s.library = 'stdc++'
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/OrionSDK"', 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/Headers/OrionSDK"' }
end