-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcurly.podspec
More file actions
28 lines (23 loc) · 904 Bytes
/
curly.podspec
File metadata and controls
28 lines (23 loc) · 904 Bytes
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
Pod::Spec.new do |s|
s.name = "curly"
s.version = "0.8.5"
s.summary = "High level libcurl api."
s.homepage = "https://github.com/johanlantz/curly"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Johan Lantz"
s.platform = :ios, "8.2"
s.source = { :git => "https://github.com/johanlantz/curly.git", :tag => s.version.to_s }
s.source_files = "*.{h,c}"
s.public_header_files = "curly.h"
s.preserve_paths = "third-party/curl/ios/**/*"
s.pod_target_xcconfig = {
"HEADER_SEARCH_PATHS" => '"$(PODS_ROOT)/curly/third-party/curl/ios/include"',
"LIBRARY_SEARCH_PATHS" => '$(inherited) "$(PODS_ROOT)/curly/third-party/curl/ios/lib"'
}
s.user_target_xcconfig = {
"LIBRARY_SEARCH_PATHS" => '$(inherited) "$(PODS_ROOT)/curly/third-party/curl/ios/lib"',
"ENABLE_BITCODE" => "NO"
}
s.libraries = "curl", "z"
s.frameworks = "Foundation"
end