forked from emqx/CocoaMQTT
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCocoaMQTT.podspec
More file actions
18 lines (17 loc) · 779 Bytes
/
CocoaMQTT.podspec
File metadata and controls
18 lines (17 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "CocoaMQTT"
s.version = "1.0.19"
s.summary = "MQTT v3.1.1 client library for iOS and OS X written with Swift 3"
s.homepage = "https://github.com/emqtt/CocoaMQTT"
s.license = { :type => "MIT" }
s.authors = { "Feng Lee" => "feng@emqtt.io", "CrazyWisdom" => "zh.whong@gmail.com", "Alex Yu" => "alexyu.dc@gmail.com" }
s.requires_arc = true
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
# s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/emqtt/CocoaMQTT.git", :tag => "1.0.19"}
s.source_files = "Source/{*.h}", "Source/*.swift"
s.dependency "CocoaAsyncSocket", "~> 7.5.1"
s.dependency "SwiftyTimer", "~> 2.0.0"
end