-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibdotEngine.podspec
29 lines (23 loc) · 1.07 KB
/
libdotEngine.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
28
29
Pod::Spec.new do |s|
s.name = 'libdotEngine'
s.version = '1.1.1'
s.summary = 'dotEngine realtime audio/video as a service'
s.description = <<-DESC
dotEngine realtime audio/video as a service
DESC
s.homepage = 'https://dot.cc'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'notedit' => '[email protected]' }
s.source = { :git => 'https://github.com/dotEngine/dotEngine-ios-sdk.git', :tag => s.version.to_s }
s.source_files = 'include/DotEngine/*.h'
s.public_header_files = "include/DotEngine/*.h"
s.preserve_paths = 'libDotEngine.a'
s.vendored_libraries = 'libDotEngine.a'
s.ios.framework = 'AVFoundation', 'AudioToolbox', 'CoreGraphics', 'CoreMedia', 'GLKit', 'UIKit', 'VideoToolbox'
s.libraries = 'c', 'sqlite3', 'stdc++'
s.requires_arc = true
s.dependency 'SocketRocket'
s.dependency 'AFNetworking/Reachability'
s.dependency 'GPUImage'
s.ios.deployment_target = '8.0'
end