I am not sure if the question is even valid, but here we go.
I am building a framework A using Xcode. Framework A depends on framework B, so it is added as a SPM dependency to the Xcode project. Framework A will be delivered as a binary framework, that is why I have the flag Build For Distribution = YES.
And it complains:
Module 'Framework B' was not compiled with library evolution support; using it means binary compatibility for
Framework B' can not be guaranteed`
Since for the framework B the source code is available, I am wondering if the library evolution support can be activated for it, and how.
Thanks!