-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathBelledonneRTP.podspec
23 lines (23 loc) · 1.01 KB
/
BelledonneRTP.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 = 'BelledonneRTP'
s.version = '1.0.0'
s.summary = 'Linphone for Swift'
s.license = 'MIT'
s.authors = { "Alsey Coleman Miller" => "colemancda.github.io" }
s.homepage = 'http://github.com/coleman/LinPhoneSwift'
s.description = 'Swift library for Linphone'
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source = { :path => '*' }
s.source_files = 'Sources/BelledonneRTP/*.swift'
s.ios.vendored_frameworks = '$SRCROOT/../liblinphone-sdk/iOS/apple-darwin/*.framework'
s.ios.xcconfig = {
'ENABLE_BITCODE' => 'NO',
'SWIFT_INCLUDE_PATHS' => '$SRCROOT/../liblinphone-sdk/Modules/CBelledonneRTP $SRCROOT/../liblinphone-sdk/Modules/CBelledonneToolbox',
'FRAMEWORK_SEARCH_PATHS' => '$SRCROOT/../liblinphone-sdk/iOS/apple-darwin/Frameworks',
'LIBRARY_SEARCH_PATHS' => '$SRCROOT/../liblinphone-sdk/iOS/apple-darwin/lib',
'OTHER_LDFLAGS' => '-framework ortp -framework bctoolbox'
}
s.dependency 'BelledonneToolbox'
end