Class: Pod::AggregateTarget
- Inherits:
-
Object
- Object
- Pod::AggregateTarget
- Defined in:
- lib/cocoapods-hmap-prebuilt/pod_target.rb
Instance Method Summary collapse
Instance Method Details
#reset_header_search_with_relative_hmap_path(hmap_path) ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/cocoapods-hmap-prebuilt/pod_target.rb', line 51 def reset_header_search_with_relative_hmap_path(hmap_path) xcconfigs.each do |config_name, config_file| config_file.reset_header_search_with_relative_hmap_path(hmap_path) config_path = xcconfig_path(config_name) config_file.save_as(config_path) end pod_targets.each do |target| unless ($skip_hmap_for_pods.include?(target.name) || $fail_generate_hmap_pods.include?(target.name)) target.addition_aggregate_hmapfile_to_pod_target(hmap_path) end end end |