Explicitely selecting gpr and grpc instead of trying our best.

pull/2064/head
Nicolas "Pixel" Noble 10 years ago
parent b4f35c0344
commit 52a2322135
  1. 4
      gRPC.podspec
  2. 4
      templates/gRPC.podspec.template

File diff suppressed because one or more lines are too long

@ -25,7 +25,7 @@ Pod::Spec.new do |s|
s.subspec 'C-Core' do |cs| s.subspec 'C-Core' do |cs|
cs.source_files = \ cs.source_files = \
% for lib in libs: % for lib in libs:
% if lib.build in ("all"): % if lib.name in ("grpc", "gpr"):
% for hdr in lib.get("headers", []): % for hdr in lib.get("headers", []):
'${hdr}', \ '${hdr}', \
% endfor % endfor
@ -40,7 +40,7 @@ Pod::Spec.new do |s|
cs.private_header_files = \ cs.private_header_files = \
% for lib in libs: % for lib in libs:
% if lib.build in ("all"): % if lib.name in ("grpc", "gpr"):
% for hdr in lib.get("headers", []): % for hdr in lib.get("headers", []):
'${hdr}', \ '${hdr}', \
% endfor % endfor

Loading…
Cancel
Save