Skip to content
Snippets Groups Projects
Commit 10622a8d authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Prevent XCode 7 from showing spurious warnings

This will hopefully make xctool work on Travis too (cross fingers!)
parent 5fc4f77e
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