This repository has been archived by the owner on Mar 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathXLFacility.podspec
62 lines (54 loc) · 2.26 KB
/
XLFacility.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# http://guides.cocoapods.org/syntax/podspec.html
# http://guides.cocoapods.org/making/getting-setup-with-trunk.html
# $ sudo gem update cocoapods
# (optional) $ pod trunk register {email} {name} --description={computer}
# $ pod trunk push
# DELETE THIS SECTION BEFORE PROCEEDING!
Pod::Spec.new do |s|
s.name = 'XLFacility'
s.version = '1.5.18'
s.author = { 'Pierre-Olivier Latour' => 'info@pol-online.net' }
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.homepage = 'https://github.com/swisspol/XLFacility'
s.summary = 'Elegant and extensive logging facility for OS X & iOS (includes database, Telnet and HTTP servers)'
s.source = { :git => 'https://github.com/swisspol/XLFacility.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.8'
s.requires_arc = true
s.subspec 'Core' do |cs|
cs.source_files = 'XLFacility/Core/*.{h,m}'
cs.private_header_files = "XLFacility/Core/*Private.h"
cs.exclude_files = "XLFacility/Core/XLFacilityCMacros.h"
cs.requires_arc = true
cs.ios.library = 'sqlite3'
cs.osx.library = 'sqlite3'
end
s.subspec 'GCDNetworking' do |cs|
cs.source_files = 'GCDTelnetServer/GCDNetworking/GCDNetworking/*.{h,m}'
cs.private_header_files = "GCDTelnetServer/GCDNetworking/GCDNetworking/*Private.h"
cs.requires_arc = true
cs.osx.frameworks = 'SystemConfiguration'
cs.ios.frameworks = 'CFNetwork'
end
s.subspec 'GCDTelnetServer' do |cs|
cs.dependency 'XLFacility/GCDNetworking'
cs.source_files = 'GCDTelnetServer/GCDTelnetServer/*.{h,m}'
cs.private_header_files = "GCDTelnetServer/GCDTelnetServer/*Private.h"
cs.requires_arc = true
cs.osx.frameworks = 'SystemConfiguration'
cs.ios.frameworks = 'CFNetwork'
end
s.subspec 'Networking' do |cs|
cs.dependency 'XLFacility/Core'
cs.dependency 'XLFacility/GCDTelnetServer'
cs.source_files = 'XLFacility/Networking/*.{h,m}'
cs.requires_arc = true
end
s.subspec 'UserInterface' do |cs|
cs.dependency 'XLFacility/Core'
cs.source_files = 'XLFacility/UserInterface/*.{h,m}'
cs.ios.exclude_files = 'XLFacility/UserInterface/XLAppKitOverlayLogger.{h,m}'
cs.osx.exclude_files = 'XLFacility/UserInterface/XLUIKitOverlayLogger.{h,m}'
cs.requires_arc = true
end
end