forked from zhtut/Networking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetCore.podspec
34 lines (22 loc) · 1.08 KB
/
NetCore.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
Pod::Spec.new do |s|
s.name = "NetCore"
s.version = "1.0.1"
s.summary = " ios的网络工具库,使用combine框架作为回调 "
s.description = <<-DESC
ios的网络工具库,使用combine框架作为回调
DESC
s.homepage = "https://github.com/zhtut/NetCore.git"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "zhtg" => "zhtg@icloud.com" }
s.source = { :git => "https://github.com/zhtut/NetCore.git", :tag => "#{s.version}" }
s.ios.deployment_target = "14.0"
s.osx.deployment_target = '12.0'
s.source_files = "Sources/**/*.swift"
s.swift_version = "5.0"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Link your library with frameworks, or libraries. Libraries do not include
# the lib prefix of their name.
#
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'ENABLE_MODULE_VERIFIER' => 'YES' }
end