Commit 1415029d authored by samdmarshall's avatar samdmarshall Committed by Eloy Durán

fix for xcode 'legacy' build locations, so that products from Pods.xcodeproj get…

fix for xcode 'legacy' build locations, so that products from Pods.xcodeproj get resolved correctly from user's xcodeproj targets, updating changelog
parent 07257721
...@@ -65,6 +65,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -65,6 +65,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[Boris Bügling](https://github.com/neonichu) [Boris Bügling](https://github.com/neonichu)
[#2912](https://github.com/CocoaPods/CocoaPods/issues/2912) [#2912](https://github.com/CocoaPods/CocoaPods/issues/2912)
* Adding Xcode Legacy build location support for default Pods.xcodeproj.
[Sam Marshall](https://github.com/samdmarshall)
##### Bug Fixes ##### Bug Fixes
* Added support for .tpp C++ header files in specs (previously were getting * Added support for .tpp C++ header files in specs (previously were getting
......
...@@ -17,6 +17,9 @@ module Pod ...@@ -17,6 +17,9 @@ module Pod
@refs_by_absolute_path = {} @refs_by_absolute_path = {}
@pods = new_group('Pods') @pods = new_group('Pods')
@development_pods = new_group('Development Pods') @development_pods = new_group('Development Pods')
configs = root_object.build_configuration_list.build_configurations
settings_for_all_configs = configs.map { |c| c.build_settings }
settings_for_all_configs.each { |settings| settings['SYMROOT'] = '${SRCROOT}/../build' }
end end
# @return [PBXGroup] The group for the support files of the aggregate # @return [PBXGroup] The group for the support files of the aggregate
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment