aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/objective-c/helloworld/Podfile
blob: 2f9de94df5fbb01e5bd595566e78c4176f81dcfd (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 'HelloWorld' do
  # Depend on the generated HelloWorld library.
  pod 'HelloWorld', :path => '.'

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