Advertisement
Guest User

Untitled

a guest
Sep 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.33 KB | None | 0 0
  1. post_install do |installer|
  2.     installer.pods_project.targets.each do |target|
  3.         target.build_configurations.each do |config|
  4.             if target.name == 'geos'
  5.                 # change libstdc++ to libc++
  6.                 config.build_settings['CLANG_CXX_LIBRARY'] = 'libc++'
  7.             end
  8.         end
  9.     end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement