Index: webrtc/build/ios/SDK/WebRTC.podspec |
diff --git a/webrtc/build/ios/SDK/WebRTC.podspec b/webrtc/build/ios/SDK/WebRTC.podspec |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f31a983a2e6e179908c85a427dcecca89f538ff6 |
--- /dev/null |
+++ b/webrtc/build/ios/SDK/WebRTC.podspec |
@@ -0,0 +1,22 @@ |
+Pod::Spec.new do |s| |
+ s.name = "WebRTC" |
+ s.version = "0.0.1" |
+ s.summary = "WebRTC SDK for iOS" |
+ s.description = <<-DESC |
+ WebRTC is a free, open project that provides browsers and mobile |
+ applications with Real-Time Communications (RTC) capabilities via simple |
+ APIs. |
+ DESC |
+ s.homepage = "http://webrtc.org/" |
+ s.license = { :type => "BSD", :file => "LICENSE" } |
+ s.author = "Google Inc." |
+ |
+ s.platform = :ios, "8.0" |
+ #s.source = { :git => "https://chromium.googlesource.com/external/webrtc.git" } |
+ |
+ s.public_header_files = "WebRTC.framework/Headers/**/*.h" |
+ s.vendored_frameworks = "WebRTC.framework" |
+ |
+ #.frameworks = "AVFoundation", "AudioToolbox", "CoreMedia", "GLKit", "VideoToolbox" |
tkchin_webrtc
2016/03/25 17:46:07
I don't really now pod syntax but are these commen
hjon_webrtc
2016/03/25 21:17:44
Yes; I've removed them since we don't seem to need
|
+ #s.library = "c++" |
+end |