Skip to content

Instantly share code, notes, and snippets.

@bdbergeron
Created April 9, 2014 20:26
Show Gist options
  • Save bdbergeron/10310849 to your computer and use it in GitHub Desktop.
Save bdbergeron/10310849 to your computer and use it in GitHub Desktop.
Pods.xcconfig
post_install do |installer|
puts 'Updating project to 64 Bit'
installer.project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ARCHS'] = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment