forked from JarvanMo/OpenWeChatSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenWeChatSDK.podspec
More file actions
34 lines (28 loc) · 1.24 KB
/
OpenWeChatSDK.podspec
File metadata and controls
34 lines (28 loc) · 1.24 KB
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
Pod::Spec.new do |s|
s.name = "OpenWeChatSDK"
s.version = "1.9.2+1"
s.summary = "WeChatSDK for Cocoapods convenience."
s.license = {"type"=>"MIT", "text"=>"LICENSE"}
s.homepage = "https://github.com/JarvanMo/OpenWeChatSDK"
s.source = {
:git => "https://github.com/JarvanMo/OpenWeChatSDK.git",
:tag => "#{s.version}"
}
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.public_header_files = "Pod/Library/include/WeChat/*.h"
s.source_files = 'Pod/Library/include/**/*.h'
s.vendored_libraries = 'Pod/Library/lib/**/*.a'
s.frameworks = 'CFNetwork', 'Security', 'CoreTelephony', 'SystemConfiguration', 'UIKit', 'CoreGraphics', 'Foundation', 'WebKit'
s.libraries = 'z', 'sqlite3.0', 'c++'
# s.default_subspec = "precompiled"
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
s.pod_target_xcconfig = { 'VALID_ARCHS' => 'x86_64 armv7 arm64' }
# s.subspec "precompiled" do |ss|
# ss.preserve_paths = "Pod/Library/include/WeChat/*.h", 'Pod/Library/lib/*.a'
# ss.vendored_libraries = 'Pod/Library/lib/*.a'
# ss.xcconfig = { 'HEADER_SEARCH_PATHS' => "${PODS_ROOT}/Headers/Public/#{s.name}" }
# end
end