Skip to content

Instantly share code, notes, and snippets.

@arnoldc
Created February 20, 2024 18:47
Show Gist options
  • Save arnoldc/1d6fad38634390fcdff7ec6c21ecbe09 to your computer and use it in GitHub Desktop.
Save arnoldc/1d6fad38634390fcdff7ec6c21ecbe09 to your computer and use it in GitHub Desktop.
test
installer.aggregate_targets.each do |target|
target.xcconfigs.each do |variant, xcconfig|
xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
end
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
xcconfig_path = config.base_configuration_reference.real_path
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment