forked from EricssonResearch/openwebrtc-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenWebRTC-SDK.podspec
25 lines (24 loc) · 922 Bytes
/
OpenWebRTC-SDK.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
Pod::Spec.new do |s|
s.name = "OpenWebRTC-SDK"
s.version = "0.4.2"
s.summary = "SDK for adding WebRTC to your app through OpenWebRTC"
s.homepage = "http://www.openwebrtc.org"
s.license = { :type => "BSD-2", :file => "LICENSE" }
s.author = { "Ericsson AB" => "labs@ericsson.com" }
s.social_media_url = "https://twitter.com/OpenWebRTC"
s.platform = :ios, "7.0"
s.source = {
:git => "https://github.com/EricssonResearch/openwebrtc-ios-sdk.git",
:tag => "0.4.2"
}
s.source_files = "SDK/**/*.{h,m}"
s.resources = "Resources/**"
s.dependency 'OpenWebRTC'
#s.resource = { :http => "https://github.com/EricssonResearch/openwebrtc/blob/master/bridge/client/sdp.js" }
s.libraries = "c++", "resolv"
s.framework = "OpenWebRTC", "WebKit"
s.requires_arc = true
s.xcconfig = {
'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/Headers/Public/**"'
}
end