-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathKhala.podspec
45 lines (35 loc) · 1.28 KB
/
Khala.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
38
39
40
41
42
43
44
45
Pod::Spec.new do |s|
s.name = 'Khala'
s.version = '0.1.0'
s.license = 'MIT'
s.summary = 'For we are bound by the Khala.(神圣的卡拉连接着我们.)'
s.homepage = 'https://github.com/linhay/Khala'
s.author = { 'linhey' => '[email protected]' }
s.source = { :git => 'https://github.com/linhay/Khala.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.subspec 'core' do |ss|
ss.source_files = ['Sources/core/*.{swift,h}']
ss.public_header_files = ['Sources/core/Khala.h']
end
s.subspec 'extension' do |ss|
ss.dependency 'Khala/core'
ss.source_files = 'Sources/extension/*.swift'
ss.osx.exclude_files = [
'Sources/extension/Khala+UIKit.swift',
'Sources/extension/KhalaAppDelegate.swift'
]
ss.watchos.exclude_files = [
'Sources/extension/Khala+AppKit.swift',
'Sources/extension/Khala+UIKit.swift',
'Sources/extension/KhalaAppDelegate.swift'
]
ss.ios.exclude_files = ['Sources/extension/Khala+AppKit.swift']
ss.tvos.exclude_files = ['Sources/extension/Khala+AppKit.swift']
end
s.dependency 'DarkTemplar', '0.0.6'
s.requires_arc = true
end