We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the following structure:
CoreDomain
library.static
MyApplication
application
CoreData
framework
When I link the static library to my MyApplication target with the following code:
dependencies: # Internal Dependencies - target: CoreDomain
It works fine and I see libCoreDomain.a in the Frameworks, Libraries and Embedded content section.
libCoreDomain.a
Frameworks, Libraries and Embedded content
However, doing the same as above with CoreData framework, the libCoreDomain.a is not linked.
I can add the libCoreDomain.a manually to my framework, but not through xcodegen
xcodegen
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Background
I have the following structure:
CoreDomain
target of typelibrary.static
.MyApplication
target of typeapplication
.CoreData
target of typeframework
.When I link the static library to my MyApplication target with the following code:
It works fine and I see
libCoreDomain.a
in theFrameworks, Libraries and Embedded content
section.Problem
However, doing the same as above with CoreData framework, the
libCoreDomain.a
is not linked.IMPORTANT
I can add the
libCoreDomain.a
manually to my framework, but not throughxcodegen
The text was updated successfully, but these errors were encountered: