Skip to content
Snippets Groups Projects
Commit 89c3b186 authored by Michael Lumish's avatar Michael Lumish
Browse files

Merge pull request #3990 from jcanizales/xcode7-warnings

Prevent XCode 7 from showing spurious warnings
parents 05e9e270 10622a8d
No related branches found
No related tags found
No related merge requests found
...@@ -566,8 +566,12 @@ Pod::Spec.new do |s| ...@@ -566,8 +566,12 @@ Pod::Spec.new do |s|
ss.header_mappings_dir = '.' ss.header_mappings_dir = '.'
# This isn't officially supported in Cocoapods. We've asked for an alternative: # This isn't officially supported in Cocoapods. We've asked for an alternative:
# https://github.com/CocoaPods/CocoaPods/issues/4386 # https://github.com/CocoaPods/CocoaPods/issues/4386
ss.xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/Headers/Private/gRPC" ' + ss.xcconfig = {
'"$(PODS_ROOT)/Headers/Private/gRPC/include"' } 'USE_HEADERMAP' => 'NO',
'ALWAYS_SEARCH_USER_PATHS' => 'NO',
'USER_HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/Headers/Private/gRPC"',
'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/Headers/Private/gRPC/include"'
}
ss.requires_arc = false ss.requires_arc = false
ss.libraries = 'z' ss.libraries = 'z'
......
...@@ -88,8 +88,12 @@ ...@@ -88,8 +88,12 @@
ss.header_mappings_dir = '.' ss.header_mappings_dir = '.'
# This isn't officially supported in Cocoapods. We've asked for an alternative: # This isn't officially supported in Cocoapods. We've asked for an alternative:
# https://github.com/CocoaPods/CocoaPods/issues/4386 # https://github.com/CocoaPods/CocoaPods/issues/4386
ss.xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/Headers/Private/gRPC" ' + ss.xcconfig = {
'"$(PODS_ROOT)/Headers/Private/gRPC/include"' } 'USE_HEADERMAP' => 'NO',
'ALWAYS_SEARCH_USER_PATHS' => 'NO',
'USER_HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/Headers/Private/gRPC"',
'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/Headers/Private/gRPC/include"'
}
ss.requires_arc = false ss.requires_arc = false
ss.libraries = 'z' ss.libraries = 'z'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment