aboutsummaryrefslogtreecommitdiffhomepage
path: root/gRPC.podspec
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2016-07-18 11:08:04 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2016-07-18 11:25:51 -0700
commite4704d3edae128b64951e399d2164f1f402c56b8 (patch)
treee293109e499c41b437c9ed2bcdbad8db4ab34743 /gRPC.podspec
parent9b45afbbc52977fc0c5a820c2eb2fb7276335822 (diff)
“Allow non-modular includes in framework modules”
It’s the magic sentence that allows pods dependent on RxLibrary to be archived correctly by XCode. It’s less than ideal, and seems arbitrary (why RxLibrary specifically?), so we’ll try to produce a minimal case and open an issue with it in the Cocoapods repo.
Diffstat (limited to 'gRPC.podspec')
-rw-r--r--gRPC.podspec5
1 files changed, 5 insertions, 0 deletions
diff --git a/gRPC.podspec b/gRPC.podspec
index e5556cc544..f95a6b3223 100644
--- a/gRPC.podspec
+++ b/gRPC.podspec
@@ -65,4 +65,9 @@ Pod::Spec.new do |s|
# Certificates, to be able to establish TLS connections:
s.resource_bundles = { 'gRPCCertificates' => ['etc/roots.pem'] }
+
+ s.pod_target_xcconfig = {
+ # This is needed by all pods that depend on gRPC-RxLibrary:
+ 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
+ }
end