aboutsummaryrefslogtreecommitdiffhomepage
path: root/GoogleUtilities/Example/Podfile
blob: 814e93a989e5684e343c3293df2d50b8a64661d6 (plain)
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
use_frameworks!

target 'Example_iOS' do
  platform :ios, '8.0'

  pod 'GoogleUtilities', :path => '../../'

  target 'Tests_iOS' do
    inherit! :search_paths
    pod 'OCMock'
  end
end

target 'Example_macOS' do
  platform :osx, '10.10'

  pod 'GoogleUtilities', :path => '../../'

  target 'Tests_macOS' do
    inherit! :search_paths
    pod 'OCMock'
  end
end

target 'Example_tvOS' do
  platform :tvos, '10.0'

  pod 'GoogleUtilities', :path => '../../'

  target 'Tests_tvOS' do
    inherit! :search_paths
    pod 'OCMock'
  end
end