-
Notifications
You must be signed in to change notification settings - Fork 1
/
GJImage.podspec
39 lines (27 loc) · 1.09 KB
/
GJImage.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
30
31
32
33
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = 'GJJanus'
s.version = '0.1.0'
s.license = 'BSD'
s.summary = 'An open source iOS framework for GJJanus.'
s.homepage = 'https://github.com/MuZiLee/GJJanus'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'MuZiLee' => '[email protected]' }
s.source = { :git => 'https://github.com/MuZiLee/GJJanus.git', :tag => "#{s.version}" }
s.ios.deployment_target = '8.0'
s.subspec 'GJJanus' do |ss|
ss.source_files = 'GJJanus/**/*.{h,m}'
ss.public_header_files = 'GJJanus/**/*.h'
end
s.subspec 'GJCategory' do |ss|
ss.source_files = 'GJCategory/**/*.{h,m}'
ss.public_header_files = 'GJCategory/**/*.h'
end
s.xcconfig = { 'CLANG_MODULES_AUTOLINK' => 'YES', 'OTHER_LDFLAGS' => '-ObjC', 'ENABLE_BITCODE' => 'NO' }
s.requires_arc = true
s.static_framework = true
s.frameworks = ['UIKit', 'OpenGLES', 'CoreMedia', 'CoreVideo', 'QuartzCore', 'AVFoundation']
s.dependency 'GoogleWebRTC'
s.dependency 'SocketRocket'
s.dependency 'AFNetworking'
s.dependency 'GoogleWebRTC'
end