-
Notifications
You must be signed in to change notification settings - Fork 11
/
MultiPlatformLibraryUnits.podspec
36 lines (28 loc) · 1.27 KB
/
MultiPlatformLibraryUnits.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
Pod::Spec.new do |spec|
spec.name = 'MultiPlatformLibraryUnits'
spec.version = '0.6.1'
spec.homepage = 'https://github.com/icerockdev/moko-units'
spec.source = { :git => "https://github.com/icerockdev/moko-units.git", :tag => "release/#{spec.version}" }
spec.authors = 'IceRock Development'
spec.license = { :type => 'Apache 2', :file => 'LICENSE.md' }
spec.summary = 'Swift additions to moko-units Kotlin/Native library'
spec.module_name = "#{spec.name}"
spec.dependency 'MultiPlatformLibrary'
spec.ios.deployment_target = '11.0'
spec.swift_version = '5'
spec.default_subspec = 'Core'
spec.subspec 'Core' do |sp|
sp.source_files = "units/src/iosMain/swift/Core/**/*.{h,m,swift}"
end
spec.subspec 'R.swift' do |sp|
sp.source_files = "units/src/iosMain/swift/R.swift/**/*.{h,m,swift}"
sp.dependency 'R.swift', '5.1.0'
end
spec.subspec 'Differ' do |sp|
sp.source_files = "units/src/iosMain/swift/Differ/**/*.{h,m,swift}"
sp.dependency 'Differ', '1.4.4'
end
spec.pod_target_xcconfig = {
'VALID_ARCHS' => '$(ARCHS_STANDARD_64_BIT)'
}
end