forked from zhtut/curl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcurl.podspec
More file actions
23 lines (17 loc) · 745 Bytes
/
curl.podspec
File metadata and controls
23 lines (17 loc) · 745 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 = 'curl'
s.version = '8.0.1'
s.summary = 'libcurl ios library '
s.homepage = 'https://github.com/zhtut/curl'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'ztgtut' => 'ztgtut@github.com' }
s.source = { :git => 'https://github.com/zhtut/curl.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.13'
# s.source_files = 'curl/include/**/*.h'
# s.osx.vendored_libraries = 'curl/lib/*_Mac.a'
# s.ios.vendored_libraries = 'curl/lib/*.a'
s.library = 'z'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.vendored_frameworks = 'curl.xcframework'
end