aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/objective-c/route_guide/Podfile
blob: 42e6920fa55cf04bbb01f21e68b112552e2e1f89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'

install! 'cocoapods', :deterministic_uuids => false

# Location of gRPC's repo root relative to this file.
GRPC_LOCAL_SRC = '../../..'

target 'RouteGuideClient' do
  # Depend on the generated RouteGuide library.
  pod 'RouteGuide', :path => '.'

  pod '!ProtoCompiler',  :podspec => "#{GRPC_LOCAL_SRC}/src/objective-c"
  pod '!ProtoCompiler-gRPCPlugin', :podspec => "#{GRPC_LOCAL_SRC}/src/objective-c"
end