Using Xcode 12, I set up a package which creates a binary target C. Now I have another package B which consumes C, and a package A which consumes B.
A -> B -> C (binary)
When I try to build A in Xcode, it never attempts to build C. When it attempts to build B, B fails saying that “module C not found”.
Is this just an Xcode 12 beta bug? Or is are transitive binary dependencies not supported?
A -> B -> C (binary)
When I try to build A in Xcode, it never attempts to build C. When it attempts to build B, B fails saying that “module C not found”.
Is this just an Xcode 12 beta bug? Or is are transitive binary dependencies not supported?