forked from mmcgary/pico
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpico.podspec
More file actions
23 lines (16 loc) · 913 Bytes
/
pico.podspec
File metadata and controls
23 lines (16 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'pico'
s.version = "0.5.0"
s.summary = "A light iOS web service client framework."
s.homepage = "https://github.com/Nykho/pico"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "bulldog" => "51startup@sina.com" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/Nykho/pico.git", :tag => "0.5.0" }
s.source_files = "pico/PicoSource/Core/**/*.{h,m}", "pico/PicoSource/SOAP/**/*.{h,m}", "pico/PicoSource/WebService/**/*.{h,m}" ,"pico/PicoSource/Vendor/XMLWriter/**/*.{h,m}", "pico/PicoSource/Vendor/OrderedDictionary/**/*.{h,m}" , "pico/PicoSource/Vendor/GDataXML/**/*.{h,m}"
s.libraries = 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
s.dependency 'AFNetworking', '~> 1.3.3'
s.requires_arc = false
s.compiler_flags = '-fno-objc-arc'
end