forked from keybase/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
34 lines (29 loc) · 755 Bytes
/
Podfile
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
# Do not set use_frameworks! globally otherwise the helper
# tool target binary will silently fail to load since it
# doesn't support dynamic frameworks (for security reasons).
# Also probably not a good idea to set any global options
# here at all.
target "Installer" do
use_frameworks!
platform :osx, "10.10"
pod "ObjectiveSugar"
pod "GBCli"
pod "Slash"
pod "MPMessagePack"
pod "KBKit", :path => "KBKit"
end
target "Status" do
use_frameworks!
platform :osx, "10.10"
pod "ObjectiveSugar"
pod "GBCli"
pod "Slash"
pod "MPMessagePack"
pod "KBKit", :path => "KBKit"
end
# This runs as a privileged helper so keep dependencies
# here to a minimum.
target "keybase.Helper" do
platform :osx, "10.10"
pod "MPMessagePack"
end