murgatroid99 | 24754c0 | 2015-06-11 13:57:55 -0700 | [diff] [blame] | 1 | source 'https://github.com/CocoaPods/Specs.git' |
| 2 | platform :ios, '8.0' |
| 3 | |
Jorge Canizales | c09854b | 2016-07-01 10:24:17 -0700 | [diff] [blame] | 4 | install! 'cocoapods', :deterministic_uuids => false |
| 5 | |
| 6 | # Location of gRPC's repo root relative to this file. |
| 7 | GRPC_LOCAL_SRC = '../../..' |
Jorge Canizales | dfe91b5 | 2015-10-11 13:51:07 -0700 | [diff] [blame] | 8 | |
murgatroid99 | 24754c0 | 2015-06-11 13:57:55 -0700 | [diff] [blame] | 9 | target 'HelloWorld' do |
| 10 | # Depend on the generated HelloWorld library. |
| 11 | pod 'HelloWorld', :path => '.' |
Jorge Canizales | c09854b | 2016-07-01 10:24:17 -0700 | [diff] [blame] | 12 | |
| 13 | # Use the local versions of Protobuf, BoringSSL, and gRPC. You don't need any of the following |
| 14 | # lines in your application. |
| 15 | pod 'Protobuf', :path => "#{GRPC_LOCAL_SRC}/third_party/protobuf" |
| 16 | |
| 17 | pod 'BoringSSL', :podspec => "#{GRPC_LOCAL_SRC}/src/objective-c" |
| 18 | |
| 19 | pod 'gRPC', :path => GRPC_LOCAL_SRC |
| 20 | pod 'gRPC-Core', :path => GRPC_LOCAL_SRC |
| 21 | pod 'gRPC-RxLibrary', :path => GRPC_LOCAL_SRC |
| 22 | pod 'gRPC-ProtoRPC', :path => GRPC_LOCAL_SRC |
murgatroid99 | 24754c0 | 2015-06-11 13:57:55 -0700 | [diff] [blame] | 23 | end |