Podfile 539 B

12345678910111213141516171819202122232425262728293031323334
  1. use_frameworks!
  2. target 'Example_iOS' do
  3. platform :ios, '8.0'
  4. pod 'GoogleUtilities', :path => '../../'
  5. target 'Tests_iOS' do
  6. inherit! :search_paths
  7. pod 'OCMock'
  8. end
  9. end
  10. target 'Example_macOS' do
  11. platform :osx, '10.11'
  12. pod 'GoogleUtilities', :path => '../../'
  13. target 'Tests_macOS' do
  14. inherit! :search_paths
  15. pod 'OCMock'
  16. end
  17. end
  18. target 'Example_tvOS' do
  19. platform :tvos, '10.0'
  20. pod 'GoogleUtilities', :path => '../../'
  21. target 'Tests_tvOS' do
  22. inherit! :search_paths
  23. pod 'OCMock'
  24. end
  25. end