forked from VoIPGRID/Vialer-pjsip-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vialer-pjsip-iOS.podspec
28 lines (22 loc) · 1.17 KB
/
Vialer-pjsip-iOS.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
26
27
Pod::Spec.new do |s|
s.name = "Vialer-pjsip-iOS"
s.version = "3.5"
s.summary = "PJSIP 2.10 for iOS"
s.description = "Pod for distributing PJSIP 2.10 wrapped in a framework. With Opus, OpenSSL and openh264."
s.homepage = "https://www.wearespindle.com"
s.license = { :type => "GNU GPLv3", :file => "LICENSE" }
s.author = { "Devhouse Spindle" => "[email protected]" }
s.source = { :git => "https://github.com/VoIPGRID/Vialer-pjsip-iOS.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/wearespindle"
s.platform = :ios, "10.0"
s.requires_arc = false
s.preserve_paths = "VialerPJSIP.framework/*"
s.public_header_files = "VialerPJSIP.framework/Versions/A/Headers/**/*.{h,hpp}"
s.source_files = "VialerPJSIP.framework/Versions/A/Headers/**/*.{h,hpp}"
s.vendored_frameworks = "VialerPJSIP.framework"
s.libraries = 'stdc++'
s.frameworks = "AudioToolbox", "AVFoundation", "CFNetwork", "CoreMedia"
s.xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => 'PJ_AUTOCONF=1',
}
end