-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathMPMessagePack.podspec
25 lines (19 loc) · 923 Bytes
/
MPMessagePack.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
Pod::Spec.new do |s|
s.name = "MPMessagePack"
s.version = "1.5.2"
s.summary = "Library for MessagePack"
s.homepage = "https://github.com/gabriel/MPMessagePack"
s.license = { :type => "MIT" }
s.authors = { "Gabriel Handford" => "[email protected]" }
s.source = { :git => "https://github.com/gabriel/MPMessagePack.git", :tag => s.version.to_s }
s.requires_arc = true
s.dependency "GHODictionary"
s.ios.deployment_target = "6.0"
s.ios.source_files = "MPMessagePack/**/*.{c,h,m}"
s.ios.exclude_files = "MPMessagePack/XPC/**/*.{c,h,m}", "MPMessagePack/include/XPC/**/*.{c,h,m}"
s.tvos.deployment_target = "10.0"
s.tvos.source_files = "MPMessagePack/**/*.{c,h,m}"
s.tvos.exclude_files = "MPMessagePack/XPC/**/*.{c,h,m}", "MPMessagePack/include/XPC/**/*.{c,h,m}"
s.osx.deployment_target = "10.8"
s.osx.source_files = "MPMessagePack/**/*.{c,h,m}"
end