forked from zhu410289616/RHSocketKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
81 lines (67 loc) · 2.33 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
workspace 'Example'
project 'Example/Example.xcodeproj'
target 'Example' do
platform :ios, '7.0'
project 'Example/Example.xcodeproj'
pod 'RHSocketKit/Core', :path => './RHSocketKit.podspec'
pod 'RHSocketKit/Extend', :path => './RHSocketKit.podspec'
pod 'RHSocketKit/CodecExt', :path => './RHSocketKit.podspec'
pod 'RHSocketKit/RPC', :path => './RHSocketKit.podspec'
pod 'CocoaAsyncSocket', '~> 7.4.3'
pod 'ProtocolBuffers', '~> 1.9.9.2'
pod 'MSWeakTimer', '~> 1.1.0'
pod 'libextobjc/EXTScope', '~> 0.4.1'
end
target 'ConnectionDemo' do
platform :ios, '7.0'
project 'ConnectionDemo/ConnectionDemo.xcodeproj'
pod 'RHSocketKit/Extend', :path => './RHSocketKit.podspec'
end
target 'DelimiterCodecDemo' do
platform :ios, '7.0'
project 'DelimiterCodecDemo/DelimiterCodecDemo.xcodeproj'
pod 'RHSocketKit/Extend', :path => './RHSocketKit.podspec'
end
target 'VariableLengthCodecDemo' do
platform :ios, '7.0'
project 'VariableLengthCodecDemo/VariableLengthCodecDemo.xcodeproj'
pod 'RHSocketKit/Extend', :path => './RHSocketKit.podspec'
end
target 'ProtobufCodecDemo' do
platform :ios, '7.0'
project 'ProtobufCodecDemo/ProtobufCodecDemo.xcodeproj'
pod 'RHSocketKit/Extend', :path => './RHSocketKit.podspec'
pod 'ProtocolBuffers', '~> 1.9.9.2'
end
target 'CustomCodecDemo' do
platform :ios, '7.0'
project 'CustomCodecDemo/CustomCodecDemo.xcodeproj'
pod 'RHSocketKit/Extend', :path => './RHSocketKit.podspec'
end
target 'RpcDemo' do
platform :ios, '7.0'
project 'RpcDemo/RpcDemo.xcodeproj'
pod 'RHSocketKit/RPC', :path => './RHSocketKit.podspec'
pod 'libextobjc/EXTScope', '~> 0.4.1'
end
target 'WebSocketDemo' do
platform :ios, '7.0'
project 'WebSocketDemo/WebSocketDemo.xcodeproj'
pod 'SocketRocket', '~> 0.5.1'
end
target 'TcpEchoServerDemo' do
platform :osx, '10.9'
project 'TcpEchoServerDemo/TcpEchoServerDemo.xcodeproj'
pod 'CocoaAsyncSocket', '~> 7.4.3'
end
#udp
target 'UdpClientDemo' do
platform :ios, '7.0'
project 'UdpClientDemo/UdpClientDemo.xcodeproj'
pod 'CocoaAsyncSocket', '~> 7.4.3'
end
target 'UdpEchoServerDemo' do
platform :osx, '10.9'
project 'UdpEchoServerDemo/UdpEchoServerDemo.xcodeproj'
pod 'CocoaAsyncSocket', '~> 7.4.3'
end