blob: a9f309bd15c59718ad5c56d515f06cb7fb759529 [file] [log] [blame]
murgatroid9924754c02015-06-11 13:57:55 -07001source 'https://github.com/CocoaPods/Specs.git'
2platform :ios, '8.0'
3
Jorge Canizalesc09854b2016-07-01 10:24:17 -07004install! 'cocoapods', :deterministic_uuids => false
5
6# Location of gRPC's repo root relative to this file.
7GRPC_LOCAL_SRC = '../../..'
Jorge Canizalesdfe91b52015-10-11 13:51:07 -07008
murgatroid9924754c02015-06-11 13:57:55 -07009target 'HelloWorld' do
10 # Depend on the generated HelloWorld library.
11 pod 'HelloWorld', :path => '.'
Jorge Canizalesc09854b2016-07-01 10:24:17 -070012
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
murgatroid9924754c02015-06-11 13:57:55 -070023end