-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModuleL.podspec
More file actions
28 lines (20 loc) · 758 Bytes
/
ModuleL.podspec
File metadata and controls
28 lines (20 loc) · 758 Bytes
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
Pod::Spec.new do |s|
s.name = "ModuleL"
s.version = "0.0.1"
s.summary = "A short description of ModuleL."
s.homepage = "http://tieba.baidu.com"
s.license = "Internal"
s.author = "neareast"
s.platform = :ios, "8.0"
s.source = { :git => "./", :tag => "#{s.version}" }
s.source_files = "**/*.{h,m,cc,mm}"
s.exclude_files = "lib/**.framework/**/*"
s.requires_arc = true
s.public_header_files = "ModuleL/*.h"
s.dependency 'ModuleA'
s.vendored_libraries = "lib/Lottie/libLottie.a"
s.vendored_frameworks = "lib/WebP.framework"
s.pod_target_xcconfig = {"OTHER_LDFLAGS" => '-ObjC',
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES'}
s.static_framework = true
end