Class: Pod::Target::BuildSettings::AggregateTargetSettings
- Inherits:
-
Pod::Target::BuildSettings
- Object
- Pod::Target::BuildSettings
- Pod::Target::BuildSettings::AggregateTargetSettings
- Defined in:
- lib/cocoapods/target/build_settings.rb
Overview
A subclass that generates build settings for a ‘PodTarget`
Constant Summary
Constants inherited from Pod::Target::BuildSettings
CONFIGURATION_BUILD_DIR_VARIABLE, PLURAL_SETTINGS, XCFRAMEWORKS_BUILD_DIR_VARIABLE
Public API collapse
-
#configuration_name ⇒ Symbol
readonly
The build configuration these settings will be used for.
Attributes inherited from Pod::Target::BuildSettings
Public API collapse
- .build_settings_names ⇒ Object
-
#initialize(target, configuration_name, configuration: nil) ⇒ AggregateTargetSettings
constructor
Initializes a new instance.
-
#xcconfig ⇒ Xcodeproj::Config
The ‘xcconfig` build setting for the #target.
Paths collapse
-
#pods_podfile_dir_path ⇒ String
The ‘pods_podfile_dir_path` build setting for the #target.
-
#pods_root ⇒ String
The ‘pods_root` build setting for the #target.
Frameworks collapse
-
#framework_search_paths ⇒ Array<String>
The ‘framework_search_paths` build setting for the #target.
-
#frameworks ⇒ Array<String>
The ‘frameworks` build setting for the #target.
-
#weak_frameworks ⇒ Array<String>
The ‘weak_frameworks` build setting for the #target.
Libraries collapse
-
#libraries ⇒ Array<String>
The ‘libraries` build setting for the #target.
-
#library_search_paths ⇒ Array<String>
The ‘library_search_paths` build setting for the #target.
Clang collapse
-
#header_search_paths ⇒ Array<String>
The ‘header_search_paths` build setting for the #target.
-
#module_map_files ⇒ Array<String>
The ‘module_map_files` build setting for the #target.
-
#other_cflags ⇒ Array<String>
The ‘other_cflags` build setting for the #target.
Swift collapse
-
#always_embed_swift_standard_libraries ⇒ String
The ‘always_embed_swift_standard_libraries` build setting for the #target.
-
#embedded_content_contains_swift ⇒ String
The ‘embedded_content_contains_swift` build setting for the #target.
-
#must_embed_swift? ⇒ Boolean
The ‘must_embed_swift?` build setting for the #target.
- #other_swift_flags_without_swift? ⇒ Boolean
-
#swift_include_paths ⇒ Array<String>
The ‘swift_include_paths` build setting for the #target.
Linking collapse
-
#any_vendored_dynamic_artifacts? ⇒ Boolean
The ‘any_vendored_dynamic_artifacts?` build setting for the #target.
-
#any_vendored_static_artifacts? ⇒ Boolean
The ‘any_vendored_static_artifacts?` build setting for the #target.
-
#ld_runpath_search_paths ⇒ Array<String>
The ‘ld_runpath_search_paths` build setting for the #target.
-
#requires_fobjc_arc? ⇒ Boolean
The ‘requires_fobjc_arc?` build setting for the #target.
-
#requires_objc_linker_flag? ⇒ Boolean
The ‘requires_objc_linker_flag?` build setting for the #target.
Target Properties collapse
-
#merged_user_target_xcconfigs ⇒ Hash{String, String}
Merges the
user_target_xcconfigfor all pod targets into a single hash and warns on conflicting definitions. -
#pod_targets ⇒ Array<PodTarget>
Returns the PodTargets which are active for the current configuration name.
-
#pod_targets_to_link ⇒ Array<PodTarget>
The ‘pod_targets_to_link` build setting for the #target.
-
#search_paths_aggregate_target_pod_target_build_settings ⇒ Array<PodTarget>
The ‘search_paths_aggregate_target_pod_target_build_settings` build setting for the #target.
-
#target_swift_version ⇒ Version
The ‘target_swift_version` build setting for the #target.
-
#user_target_xcconfig_values_by_consumer_by_key ⇒ Hash{String,Hash{Target,String}]
Returns the
user_target_xcconfigfor all pod targets and their spec consumers grouped by keys.
Methods inherited from Pod::Target::BuildSettings
#clang_warn_quoted_include_in_framework_header, #code_sign_identity, #framework_search_paths_to_import_developer_frameworks, #gcc_preprocessor_definitions, #initialize_copy, #other_ldflags, #other_swift_flags, #pods_build_dir, #pods_configuration_build_dir, #pods_xcframeworks_build_dir, #save_as, #use_recursive_script_inputs_in_script_phases, xcframework_intermediate_dir
Constructor Details
#initialize(target, configuration_name, configuration: nil) ⇒ AggregateTargetSettings
Initializes a new instance
1093 1094 1095 1096 1097 |
# File 'lib/cocoapods/target/build_settings.rb', line 1093 def initialize(target, configuration_name, configuration: nil) super(target) @configuration_name = configuration_name (@configuration = configuration) || raise("No configuration for #{self}.") end |
Instance Attribute Details
#configuration_name ⇒ Symbol (readonly)
Returns The build configuration these settings will be used for.
1083 1084 1085 |
# File 'lib/cocoapods/target/build_settings.rb', line 1083 def configuration_name @configuration_name end |
Class Method Details
.build_settings_names ⇒ Object
1077 1078 1079 |
# File 'lib/cocoapods/target/build_settings.rb', line 1077 def self.build_settings_names @build_settings_names | BuildSettings.build_settings_names end |
Instance Method Details
#always_embed_swift_standard_libraries ⇒ String
The ‘always_embed_swift_standard_libraries` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘always_embed_swift_standard_libraries, build_setting, memoized`.
1225 1226 1227 1228 1229 1230 |
# File 'lib/cocoapods/target/build_settings.rb', line 1225 define_build_settings_method :always_embed_swift_standard_libraries, :build_setting => true, :memoized => true do return unless return if target_swift_version < EMBED_STANDARD_LIBRARIES_MINIMUM_VERSION 'YES' end |
#any_vendored_dynamic_artifacts? ⇒ Boolean
The ‘any_vendored_dynamic_artifacts?` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘any_vendored_dynamic_artifacts?, memoized`.
1258 1259 1260 1261 1262 1263 1264 |
# File 'lib/cocoapods/target/build_settings.rb', line 1258 define_build_settings_method :any_vendored_dynamic_artifacts?, :memoized => true do pod_targets.any? do |pt| pt.file_accessors.any? do |fa| !fa.vendored_dynamic_artifacts.empty? end end end |
#any_vendored_static_artifacts? ⇒ Boolean
The ‘any_vendored_static_artifacts?` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘any_vendored_static_artifacts?, memoized`.
1267 1268 1269 1270 1271 1272 1273 |
# File 'lib/cocoapods/target/build_settings.rb', line 1267 define_build_settings_method :any_vendored_static_artifacts?, :memoized => true do pod_targets.any? do |pt| pt.file_accessors.any? do |fa| !fa.vendored_static_artifacts.empty? end end end |
#embedded_content_contains_swift ⇒ String
The ‘embedded_content_contains_swift` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘embedded_content_contains_swift, build_setting, memoized`.
1233 1234 1235 1236 1237 1238 |
# File 'lib/cocoapods/target/build_settings.rb', line 1233 define_build_settings_method :embedded_content_contains_swift, :build_setting => true, :memoized => true do return unless return if target_swift_version >= EMBED_STANDARD_LIBRARIES_MINIMUM_VERSION 'YES' end |
#framework_search_paths ⇒ Array<String>
The ‘framework_search_paths` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘framework_search_paths, build_setting, memoized, sorted, uniqued, from_pod_targets_to_link, from_search_paths_aggregate_targets`.
1134 1135 1136 |
# File 'lib/cocoapods/target/build_settings.rb', line 1134 define_build_settings_method :framework_search_paths, :build_setting => true, :memoized => true, :sorted => true, :uniqued => true, :from_pod_targets_to_link => true, :from_search_paths_aggregate_targets => :framework_search_paths_to_import do [] end |
#frameworks ⇒ Array<String>
The ‘frameworks` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘frameworks, memoized, sorted, uniqued, from_pod_targets_to_link, from_search_paths_aggregate_targets`.
1124 1125 1126 |
# File 'lib/cocoapods/target/build_settings.rb', line 1124 define_build_settings_method :frameworks, :memoized => true, :sorted => true, :uniqued => true, :from_pod_targets_to_link => true, :from_search_paths_aggregate_targets => :dynamic_frameworks_to_import do [] end |
#header_search_paths ⇒ Array<String>
The ‘header_search_paths` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘header_search_paths, build_setting, memoized, sorted, uniqued`.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 |
# File 'lib/cocoapods/target/build_settings.rb', line 1157 define_build_settings_method :header_search_paths, :build_setting => true, :memoized => true, :sorted => true, :uniqued => true do paths = [] if !target.build_as_framework? || !pod_targets.all?(&:should_build?) paths.concat target.sandbox.public_headers.search_paths(target.platform) end # Make frameworks headers discoverable with any syntax (quotes, # brackets, @import, etc.) paths.concat pod_targets. select { |pt| pt.build_as_framework? && pt.should_build? }. map { |pt| pt.build_settings[@configuration].framework_header_search_path } xcframework_library_headers = pod_targets.flat_map { |pt| pt.build_settings[@configuration].vendored_xcframeworks }. select { |xcf| xcf.build_type.static_library? }. map { |xcf| "#{BuildSettings.xcframework_intermediate_dir(xcf)}/Headers" }. compact paths.concat xcframework_library_headers paths.concat target.search_paths_aggregate_targets.flat_map { |at| at.build_settings(configuration_name).header_search_paths } paths end |
#ld_runpath_search_paths ⇒ Array<String>
The ‘ld_runpath_search_paths` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘ld_runpath_search_paths, build_setting, memoized, uniqued`.
1250 1251 1252 1253 1254 1255 |
# File 'lib/cocoapods/target/build_settings.rb', line 1250 define_build_settings_method :ld_runpath_search_paths, :build_setting => true, :memoized => true, :uniqued => true do return unless pod_targets.any?(&:build_as_dynamic?) || any_vendored_dynamic_artifacts? symbol_type = target.user_targets.map(&:symbol_type).uniq.first test_bundle = symbol_type == :octest_bundle || symbol_type == :unit_test_bundle || symbol_type == :ui_test_bundle _ld_runpath_search_paths(:requires_host_target => target.requires_host_target?, :test_bundle => test_bundle) end |
#libraries ⇒ Array<String>
The ‘libraries` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘libraries, memoized, sorted, uniqued, from_pod_targets_to_link, from_search_paths_aggregate_targets`.
1143 1144 1145 |
# File 'lib/cocoapods/target/build_settings.rb', line 1143 define_build_settings_method :libraries, :memoized => true, :sorted => true, :uniqued => true, :from_pod_targets_to_link => true, :from_search_paths_aggregate_targets => :dynamic_libraries_to_import do [] end |
#library_search_paths ⇒ Array<String>
The ‘library_search_paths` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘library_search_paths, build_setting, memoized, sorted, uniqued, from_pod_targets_to_link, from_search_paths_aggregate_targets`.
1148 1149 1150 |
# File 'lib/cocoapods/target/build_settings.rb', line 1148 define_build_settings_method :library_search_paths, :build_setting => true, :memoized => true, :sorted => true, :uniqued => true, :from_pod_targets_to_link => true, :from_search_paths_aggregate_targets => :vendored_dynamic_library_search_paths do [] end |
#merged_user_target_xcconfigs ⇒ Hash{String, String}
Merges the user_target_xcconfig for all pod targets into a single hash and warns on conflicting definitions.
The ‘merged_user_target_xcconfigs` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘merged_user_target_xcconfigs, memoized`.
1350 1351 1352 |
# File 'lib/cocoapods/target/build_settings.rb', line 1350 define_build_settings_method :merged_user_target_xcconfigs, :memoized => true do merged_xcconfigs(user_target_xcconfig_values_by_consumer_by_key, :user_target_xcconfig) end |
#module_map_files ⇒ Array<String>
The ‘module_map_files` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘module_map_files, memoized, sorted, uniqued, compacted, from_search_paths_aggregate_targets`.
1206 1207 1208 |
# File 'lib/cocoapods/target/build_settings.rb', line 1206 define_build_settings_method :module_map_files, :memoized => true, :sorted => true, :uniqued => true, :compacted => true, :from_search_paths_aggregate_targets => :module_map_file_to_import do pod_targets.map { |pt| pt.build_settings[@configuration].module_map_file_to_import } end |
#must_embed_swift? ⇒ Boolean
The ‘must_embed_swift?` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘must_embed_swift?, memoized`.
1241 1242 1243 |
# File 'lib/cocoapods/target/build_settings.rb', line 1241 define_build_settings_method :must_embed_swift?, :memoized => true do !target.requires_host_target? && pod_targets.any?(&:uses_swift?) end |
#other_cflags ⇒ Array<String>
The ‘other_cflags` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘other_cflags, build_setting, memoized`.
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 |
# File 'lib/cocoapods/target/build_settings.rb', line 1183 define_build_settings_method :other_cflags, :build_setting => true, :memoized => true do flags = super() pod_targets_inhibiting_warnings = pod_targets.select(&:inhibit_warnings?) silenced_headers = [] silenced_frameworks = [] pod_targets_inhibiting_warnings.each do |pt| if pt.build_as_framework? && pt.should_build? silenced_headers.append pt.build_settings[@configuration].framework_header_search_path else silenced_headers.concat pt.build_settings[@configuration].public_header_search_paths end silenced_frameworks.concat pt.build_settings[@configuration].framework_search_paths_to_import end flags += silenced_headers.uniq.flat_map { |p| ['-isystem', p] } flags += silenced_frameworks.uniq.flat_map { |p| ['-iframework', p] } flags end |
#other_swift_flags_without_swift? ⇒ Boolean
1215 1216 1217 |
# File 'lib/cocoapods/target/build_settings.rb', line 1215 def other_swift_flags_without_swift? module_map_files.any? end |
#pod_targets ⇒ Array<PodTarget>
Returns the PodTargets which are active for the current configuration name.
The ‘pod_targets` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘pod_targets, memoized`.
1307 1308 1309 |
# File 'lib/cocoapods/target/build_settings.rb', line 1307 define_build_settings_method :pod_targets, :memoized => true do target.pod_targets_for_build_configuration(configuration_name) end |
#pod_targets_to_link ⇒ Array<PodTarget>
The ‘pod_targets_to_link` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘pod_targets_to_link, memoized`.
1312 1313 1314 1315 |
# File 'lib/cocoapods/target/build_settings.rb', line 1312 define_build_settings_method :pod_targets_to_link, :memoized => true do pod_targets - target.search_paths_aggregate_targets.flat_map { |at| at.build_settings(configuration_name).pod_targets_to_link } end |
#pods_podfile_dir_path ⇒ String
The ‘pods_podfile_dir_path` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘pods_podfile_dir_path, build_setting, memoized`.
1110 1111 1112 |
# File 'lib/cocoapods/target/build_settings.rb', line 1110 define_build_settings_method :pods_podfile_dir_path, :build_setting => true, :memoized => true do target.podfile_dir_relative_path end |
#pods_root ⇒ String
The ‘pods_root` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘pods_root, build_setting, memoized`.
1115 1116 1117 |
# File 'lib/cocoapods/target/build_settings.rb', line 1115 define_build_settings_method :pods_root, :build_setting => true, :memoized => true do target.relative_pods_root end |
#requires_fobjc_arc? ⇒ Boolean
The ‘requires_fobjc_arc?` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘requires_fobjc_arc?, memoized`.
1282 1283 1284 1285 |
# File 'lib/cocoapods/target/build_settings.rb', line 1282 define_build_settings_method :requires_fobjc_arc?, :memoized => true do target.podfile.set_arc_compatibility_flag? && target.spec_consumers.any?(&:requires_arc?) end |
#requires_objc_linker_flag? ⇒ Boolean
The ‘requires_objc_linker_flag?` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘requires_objc_linker_flag?, memoized`.
1276 1277 1278 1279 |
# File 'lib/cocoapods/target/build_settings.rb', line 1276 define_build_settings_method :requires_objc_linker_flag?, :memoized => true do pod_targets.any?(&:build_as_static?) || any_vendored_static_artifacts? end |
#search_paths_aggregate_target_pod_target_build_settings ⇒ Array<PodTarget>
The ‘search_paths_aggregate_target_pod_target_build_settings` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘search_paths_aggregate_target_pod_target_build_settings, memoized, uniqued`.
1318 1319 1320 1321 1322 |
# File 'lib/cocoapods/target/build_settings.rb', line 1318 define_build_settings_method :search_paths_aggregate_target_pod_target_build_settings, :memoized => true, :uniqued => true do pod_targets = target.search_paths_aggregate_targets.flat_map { |at| at.build_settings(configuration_name).pod_targets } pod_targets = select_maximal_pod_targets(pod_targets) pod_targets.map { |pt| pt.build_settings[@configuration] } end |
#swift_include_paths ⇒ Array<String>
The ‘swift_include_paths` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘swift_include_paths, build_setting, memoized, sorted, uniqued, from_pod_targets_to_link, from_search_paths_aggregate_targets`.
1220 1221 1222 |
# File 'lib/cocoapods/target/build_settings.rb', line 1220 define_build_settings_method :swift_include_paths, :build_setting => true, :memoized => true, :sorted => true, :uniqued => true, :from_pod_targets_to_link => true, :from_search_paths_aggregate_targets => :swift_include_paths_to_import do [] end |
#target_swift_version ⇒ Version
The ‘target_swift_version` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘target_swift_version, memoized, frozen`.
1293 1294 1295 1296 1297 |
# File 'lib/cocoapods/target/build_settings.rb', line 1293 define_build_settings_method :target_swift_version, :memoized => true, :frozen => false do swift_version = target.target_definition.swift_version swift_version = nil if swift_version.blank? Version.new(swift_version) end |
#user_target_xcconfig_values_by_consumer_by_key ⇒ Hash{String,Hash{Target,String}]
Returns the user_target_xcconfig for all pod targets and their spec consumers grouped by keys
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 |
# File 'lib/cocoapods/target/build_settings.rb', line 1329 def user_target_xcconfig_values_by_consumer_by_key targets = (pod_targets + target.search_paths_aggregate_targets.flat_map(&:pod_targets)).uniq targets.each_with_object({}) do |target, hash| target.spec_consumers.each do |spec_consumer| spec_consumer.user_target_xcconfig.each do |k, v| # TODO: Need to decide how we are going to ensure settings like these # are always excluded from the user's project. # # See https://github.com/CocoaPods/CocoaPods/issues/1216 next if k == 'USE_HEADERMAP' (hash[k] ||= {})[spec_consumer] = v end end end end |
#weak_frameworks ⇒ Array<String>
The ‘weak_frameworks` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘weak_frameworks, memoized, sorted, uniqued, from_pod_targets_to_link, from_search_paths_aggregate_targets`.
1129 1130 1131 |
# File 'lib/cocoapods/target/build_settings.rb', line 1129 define_build_settings_method :weak_frameworks, :memoized => true, :sorted => true, :uniqued => true, :from_pod_targets_to_link => true, :from_search_paths_aggregate_targets => :weak_frameworks do [] end |
#xcconfig ⇒ Xcodeproj::Config
The ‘xcconfig` build setting for the Pod::Target::BuildSettings#target.
The return value from this method will be: ‘xcconfig, memoized`.
1100 1101 1102 1103 |
# File 'lib/cocoapods/target/build_settings.rb', line 1100 define_build_settings_method :xcconfig, :memoized => true do xcconfig = super() merge_spec_xcconfig_into_xcconfig(merged_user_target_xcconfigs, xcconfig) end |