diff options
author | makdharma <makdharma@users.noreply.github.com> | 2016-08-16 09:17:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-16 09:17:29 -0700 |
commit | 3bc78cd0b5bd784a235c01612d634b1ec5f8fb97 (patch) | |
tree | 7b0d346dc5d6f1625905efb45d90468bb1d7ec32 /gRPC-ProtoRPC.podspec | |
parent | a150352090ec2b5b2c385e3394f5392d61c28aee (diff) | |
parent | 8ac55f8a8c6f43dd1b13d6390ce23babdb1a21c5 (diff) |
Merge pull request #7448 from jcanizales/p0-archive-fix
Work around Cocoapods dynamic frameworks incompatibility with XCode archive
Diffstat (limited to 'gRPC-ProtoRPC.podspec')
-rw-r--r-- | gRPC-ProtoRPC.podspec | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gRPC-ProtoRPC.podspec b/gRPC-ProtoRPC.podspec index f3a8343041..d8367e0e5e 100644 --- a/gRPC-ProtoRPC.podspec +++ b/gRPC-ProtoRPC.podspec @@ -56,8 +56,10 @@ Pod::Spec.new do |s| s.dependency 'gRPC', version s.dependency 'gRPC-RxLibrary', version s.dependency 'Protobuf', '~> 3.0' - # This is needed by all pods that depend on Protobuf: s.pod_target_xcconfig = { + # This is needed by all pods that depend on Protobuf: 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1', + # This is needed by all pods that depend on gRPC-RxLibrary: + 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES', } end |