Commit 5a55db12 authored by Inferis's avatar Inferis Committed by Samuel E. Giddins

Apply config to pod resource targets too.

After creating the private config file, apply it as a base_configuration_reference for all resource_bundle_targets of the pod.
parent 03950f65
......@@ -156,6 +156,13 @@ module Pod
native_target.build_configurations.each do |c|
c.base_configuration_reference = xcconfig_file_ref
end
# also apply the private config to resource targets
target.resource_bundle_targets.each do |rsrc_target|
rsrc_target.build_configurations.each do |rsrc_bc|
rsrc_bc.base_configuration_reference = xcconfig_file_ref
end
end
end
# Creates a prefix header file which imports `UIKit` or `Cocoa` according
......
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