Podfile 937 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. post_install do |installer_representation|
  10. installer_representation.pods_project.targets.each do |target|
  11. target.build_configurations.each do |config|
  12. if config.name != 'Release'
  13. config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', 'GUL_UNSWIZZLING_ENABLED=1', 'GUL_APP_DELEGATE_TESTING=1']
  14. end
  15. end
  16. end
  17. end
  18. end
  19. target 'Example_macOS' do
  20. platform :osx, '10.10'
  21. pod 'GoogleUtilities', :path => '../../'
  22. target 'Tests_macOS' do
  23. inherit! :search_paths
  24. pod 'OCMock'
  25. end
  26. end
  27. target 'Example_tvOS' do
  28. platform :tvos, '10.0'
  29. pod 'GoogleUtilities', :path => '../../'
  30. target 'Tests_tvOS' do
  31. inherit! :search_paths
  32. pod 'OCMock'
  33. end
  34. end