forked from alibaba/GCanvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WeexGcanvas.podspec
43 lines (29 loc) · 1.03 KB
/
WeexGcanvas.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
40
41
42
43
Pod::Spec.new do |s|
s.name = "WeexGcanvas"
s.version = "0.1.1"
s.summary = "GCanvas Weex Bridge Source."
s.description = <<-DESC
GCanvas Weex Bridge Source.
DESC
s.homepage = 'https://github.com/alibaba/GCanvas'
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Alibaba-INC copyright
LICENSE
}
s.author = { 'jwxbond' => '[email protected]' }
s.platform = :ios
s.ios.deployment_target = '8.0'
# s.source = { :path => '.' }
s.source = { :git => "https://github.com/alibaba/GCanvas.git", :tag => s.version }
s.source_files = "GCanvas/bridges/weex-bridge/ios/sdk/Sources/*.{h,m}"
s.public_header_files = 'GCanvas/bridges/weex-bridge/ios/sdk/Sources/*.h'
s.user_target_xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => "'$(PODS_ROOT)/WeexGcanvas'" }
s.requires_arc = true
s.dependency "WeexPluginLoader"
s.dependency "WeexSDK"
s.dependency "GCanvas"
s.dependency "SDWebImage"
s.libraries = "stdc++"
end