-
Notifications
You must be signed in to change notification settings - Fork 48
/
Podfile
49 lines (40 loc) · 920 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Uncomment this line to define a global platform for your project
# platform :ios, '6.0'
source 'https://github.com/CocoaPods/Specs.git'
workspace 'BIND'
target 'BIND' do
platform :ios, '7.0'
xcodeproj 'BIND.xcodeproj'
pod 'libextobjc'
pod 'NODE_'
end
target 'BIND-OSX' do
platform :osx, '10.9'
xcodeproj 'BIND.xcodeproj'
pod 'libextobjc'
end
target 'BINDTests' do
platform :ios, '7.0'
xcodeproj 'BIND.xcodeproj'
pod 'Kiwi'
end
target 'BIND-OSXTests' do
platform :osx, '10.9'
xcodeproj 'BIND.xcodeproj'
pod 'Kiwi'
end
target 'BINDAppTests' do
platform :ios, '7.0'
xcodeproj 'BIND.xcodeproj'
pod 'Kiwi'
end
target 'BINDPlugin' do
platform :osx, '10.9'
xcodeproj 'BINDPlugin/BINDPlugin.xcodeproj'
pod 'XcodeEditor'
end
target 'BINDPluginTests' do
platform :osx, '10.9'
xcodeproj 'BINDPlugin/BINDPlugin.xcodeproj'
pod 'Kiwi'
end