forked from robbiehanson/KissXML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KissXML.podspec
22 lines (19 loc) · 877 Bytes
/
KissXML.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'KissXML'
s.version = '5.2.0'
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.summary = 'A replacement for Cocoa\'s NSXML cluster of classes. Based on libxml.'
s.homepage = 'https://github.com/robbiehanson/KissXML'
s.author = { 'Robbie Hanson' => '[email protected]' }
s.source = { :git => 'https://github.com/robbiehanson/KissXML.git', :tag => s.version }
s.requires_arc = true
s.source_files = 'KissXML/**/*.{h,m,swift}'
s.private_header_files = 'KissXML/Private/**/*.h'
s.osx.exclude_files = 'KissXML/**/*.swift'
s.library = 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'}
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
end