-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathTencentOpenApiSDK.podspec
37 lines (31 loc) · 1.28 KB
/
TencentOpenApiSDK.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
Pod::Spec.new do |s|
s.name = "TencentOpenApiSDK"
s.version = "2.9.5"
s.summary = "The Official iOS SDK of Tencent Open API."
s.homepage = "http://wiki.open.qq.com"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Copyright (c) 2014 Tencent. All rights reserved.
LICENSE
}
s.author = { "OpenQQ" => "[email protected]" }
s.platform = :ios
s.requires_arc = true
s.source = { :git=> "https://github.com/candyan/TencentOpenApiSDK.git", :tag => "#{s.version}" }
s.xcconfig = { "FRAMEWORK_SEARCH_PATHS" => "$(inherited)" }
s.libraries = 'iconv', 'z', 'c++', 'sqlite3'
s.frameworks = 'Security', 'SystemConfiguration', 'CoreGraphics', 'CoreTelephony'
s.default_subspec = 'Basic'
s.subspec "64bit" do |tc_64|
tc_64.vendored_frameworks = '64Bit/TencentOpenAPI.framework'
tc_64.source_files = '64Bit/TencentOpenAPI.framework/Headers/**/*.h'
tc_64.resource_bundles = {
'TencentOpenAPI' => ['64Bit/TencentOpenApi_IOS_Bundle.bundle']
}
end
s.subspec "Basic" do |bs|
bs.vendored_frameworks = 'Basic/TencentOpenAPI.framework'
bs.source_files = 'Basic/TencentOpenAPI.framework/Headers/**/*.h'
end
end