List err_data.c explicitly in source files

pull/20975/head
Muxi Yan 5 years ago
parent 243ff8ad73
commit dc583632fc
  1. 9
      src/objective-c/BoringSSL-GRPC.podspec
  2. 9
      templates/src/objective-c/BoringSSL-GRPC.podspec.template

@ -130,14 +130,15 @@ Pod::Spec.new do |s|
ss.header_mappings_dir = '.'
ss.source_files = 'ssl/*.{h,c,cc}',
'ssl/**/*.{h,c,cc}',
'*.{h,c,cc}', # for generated file such as err_data.c
'crypto/*.{h,c,cc}',
'crypto/**/*.{h,c,cc}',
'third_party/fiat/*.{h,c,cc}' # has to include fiat because spake25519 depends
# on it
# We have to include fiat because spake25519 depends on it
'third_party/fiat/*.{h,c,cc}',
# Include the err_data.c generated in prepare_command below
'err_data.c'
ss.private_header_files = 'ssl/*.h',
'ssl/**/*.h',
'*.h',
'crypto/*.h',
'crypto/**/*.h',
'third_party/fiat/*.h'

@ -137,14 +137,15 @@
ss.header_mappings_dir = '.'
ss.source_files = 'ssl/*.{h,c,cc}',
'ssl/**/*.{h,c,cc}',
'*.{h,c,cc}', # for generated file such as err_data.c
'crypto/*.{h,c,cc}',
'crypto/**/*.{h,c,cc}',
'third_party/fiat/*.{h,c,cc}' # has to include fiat because spake25519 depends
# on it
# We have to include fiat because spake25519 depends on it
'third_party/fiat/*.{h,c,cc}',
# Include the err_data.c generated in prepare_command below
'err_data.c'
ss.private_header_files = 'ssl/*.h',
'ssl/**/*.h',
'*.h',
'crypto/*.h',
'crypto/**/*.h',
'third_party/fiat/*.h'

Loading…
Cancel
Save