Hello Swift Forum,
In my Xcode project I have a big framework with mixed Objective-C and Swift sources and I'm experimenting migrating it to Swift Package Manager. I had to break it up in several targets because of the mixed codebase. It works great, however now the clients of this framework have to import each individual target separately, when before they would just import the whole framework once.
Is there a way to merge all the targets into a single module? Thanks in advance.