aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/gRPC.podspec.template
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-06-15 22:48:06 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-06-15 22:48:06 +0200
commit52a2322135e5ac4700d4b64f2d1b4308123350a5 (patch)
treec4c0788a39eb2d37db1e6e06b8fb2b244261cfc6 /templates/gRPC.podspec.template
parentb4f35c03447bfe4402d8f5f2a1eb74e3b3d7d54d (diff)
Explicitely selecting gpr and grpc instead of trying our best.
Diffstat (limited to 'templates/gRPC.podspec.template')
-rw-r--r--templates/gRPC.podspec.template4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/gRPC.podspec.template b/templates/gRPC.podspec.template
index e85848199e..1f7de5ce94 100644
--- a/templates/gRPC.podspec.template
+++ b/templates/gRPC.podspec.template
@@ -25,7 +25,7 @@ Pod::Spec.new do |s|
s.subspec 'C-Core' do |cs|
cs.source_files = \
% for lib in libs:
-% if lib.build in ("all"):
+% if lib.name in ("grpc", "gpr"):
% for hdr in lib.get("headers", []):
'${hdr}', \
% endfor
@@ -40,7 +40,7 @@ Pod::Spec.new do |s|
cs.private_header_files = \
% for lib in libs:
-% if lib.build in ("all"):
+% if lib.name in ("grpc", "gpr"):
% for hdr in lib.get("headers", []):
'${hdr}', \
% endfor