-
Notifications
You must be signed in to change notification settings - Fork 0
/
YogaFlexBoxKit.podspec
32 lines (26 loc) · 1 KB
/
YogaFlexBoxKit.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
Pod::Spec.new do |s|
s.name = "YogaFlexBoxKit"
s.version = "1.0.0"
s.summary = "基于yoga的flex布局"
s.description = <<-DESC
基于yoga的flex布局
DESC
s.homepage = "https://github.com/Z-JaDe"
s.license = 'MIT'
s.author = { "ZJaDe" => "[email protected]" }
s.source = { :git => "[email protected]:Z-JaDe/YogaFlexBoxKit.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '13.0'
s.swift_versions = '5.0','5.1','5.2','5.3'
s.frameworks = "Foundation"
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "Sources/**/*.{swift,h,m}"
ss.dependency "Yoga"
end
s.subspec "ObjectiveC" do |ss|
ss.dependency "YogaFlexBoxKit/Core"
ss.source_files = "ObjectiveC/**/*.{swift,h,m}"
ss.xcconfig = { 'OTHER_SWIFT_FLAGS' => '"-D" "ObjcSupport"' }
end
end