You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment the graph only has information from the "Link Binary With Libraries" build phase. It'll be a good idea to add dependencies that come from xcconfig files and project Build Settings, e.g.: -framework, -l.
Notes:
This settings depend on the target configuration, so we'll have to decide if we either pass the configuration as a parameter or we do something else, like flatten the results.
Check if Xcodeproj::Project.build_settings returns resolved build settings (if there's an xcconfig file attached to the project), otherwise we would have to parse the xcconfig file attached to the target's build configuration.
Xcodeproj::Config provides support for parsing xcconfig files.
The text was updated successfully, but these errors were encountered:
Check this tweet for context: https://twitter.com/NeoNacho/status/846346465911951360
At the moment the graph only has information from the "Link Binary With Libraries" build phase. It'll be a good idea to add dependencies that come from xcconfig files and project Build Settings, e.g.:
-framework
,-l
.Notes:
Xcodeproj::Project.build_settings
returns resolved build settings (if there's an xcconfig file attached to the project), otherwise we would have to parse the xcconfig file attached to the target's build configuration.Xcodeproj::Config
provides support for parsing xcconfig files.The text was updated successfully, but these errors were encountered: