aboutsummaryrefslogtreecommitdiffhomepage
path: root/gRPC.podspec
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-08-31 10:46:58 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-08-31 10:46:58 -0700
commitceb39ae60c0469d9e7933ac94f10c6e63db55536 (patch)
tree9414f2dce9989de7530d11c9c827afeda7788754 /gRPC.podspec
parent0c137e2e1f737d84e95805bf406a7f7e8938c065 (diff)
parent79d7d996002ff1a4d0523af1895c2e007fdba159 (diff)
Merge remote-tracking branch 'upstream/master' into http_connect
Diffstat (limited to 'gRPC.podspec')
-rw-r--r--gRPC.podspec9
1 files changed, 7 insertions, 2 deletions
diff --git a/gRPC.podspec b/gRPC.podspec
index 3f6da3b141..9a47934953 100644
--- a/gRPC.podspec
+++ b/gRPC.podspec
@@ -30,7 +30,7 @@
Pod::Spec.new do |s|
s.name = 'gRPC'
- version = '1.0.0-pre1'
+ version = '1.0.0'
s.version = version
s.summary = 'gRPC client library for iOS/OSX'
s.homepage = 'http://www.grpc.io'
@@ -39,7 +39,7 @@ Pod::Spec.new do |s|
s.source = {
:git => 'https://github.com/grpc/grpc.git',
- :tag => "objective-c-v#{version}",
+ :tag => "v#{version}",
}
s.ios.deployment_target = '7.1'
@@ -59,4 +59,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