-
Notifications
You must be signed in to change notification settings - Fork 15
/
WeexSDK.podspec
executable file
·44 lines (35 loc) · 1.61 KB
/
WeexSDK.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
44
# coding: utf-8
Pod::Spec.new do |s|
s.name = "WeexSDK"
s.version = "0.19.0"
s.summary = "WeexSDK Source ."
s.description = <<-DESC
A framework for building Mobile cross-platform UI
DESC
s.homepage = "https://github.com/bmfe/WeexiOSSDK"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Alibaba-INC copyright
LICENSE
}
s.authors = { "cxfeng1" => "cxfeng1@gmail.com",
"boboning" => "ningli928@163.com",
"yangshengtao" => "yangshengtao1314@163.com",
"kfeagle" => "sunjjbobo@163.com",
"acton393" => "zhangxing610321@gmail.com"
}
s.platform = :ios
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/bmfe/WeexiOSSDK.git", :tag => s.version.to_s }
s.source_files = 'WeexSDK/Sources/**/*.{h,m,mm,c,cpp}'
s.resources = 'WeexSDK/Resources/*.js', 'WeexSDK/Resources/wx_load_error@3x.png'
s.user_target_xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => "'$(PODS_ROOT)/WeexSDK'" }
s.requires_arc = true
s.prefix_header_file = 'WeexSDK/Sources/Supporting Files/WeexSDK-Prefix.pch'
s.private_header_files = 'WeexSDK/Sources/Component/RecycleList/WXJSASTParser.h',
'WeexSDK/Sources/Layout/WXScrollerComponent+Layout.h'
s.xcconfig = { "OTHER_LINK_FLAG" => '$(inherited) -ObjC'}
s.frameworks = 'CoreMedia','MediaPlayer','AVFoundation','AVKit','JavaScriptCore', 'GLKit', 'OpenGLES', 'CoreText', 'QuartzCore', 'CoreGraphics'
s.libraries = "stdc++"
end