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
now, we have to options to avoid potential errors when someone forgets about depends_on attribute: make it implicit when link_with elements are in the tree, or give a warning when it is but depends_on is not there.
The text was updated successfully, but these errors were encountered:
Because you can depend on something which is not a library, for example, in rusted I have 2 app targets: Server and ServerSCT which depends on it, ServerSCT also depends on some phonys which generate sqlite db (those can be C++ generators or anything else in that matter). Too many cases would not be covered this way, besides, I think it's better to depends_on than link something implicitly.
To link with internal lib you have to write:
now, we have to options to avoid potential errors when someone forgets about depends_on attribute: make it implicit when link_with elements are in the tree, or give a warning when it is but depends_on is not there.
The text was updated successfully, but these errors were encountered: