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
Need to think through the right way to do this. Currently, we have to add depends for everything in the chain, which is a bit obnoxious.
Probably should look at cmake to see what they do -- for cmake target_link_libraries has a concept of PRIVATE/PUBLIC/INTERFACE options, where PUBLIC/INTERFACE options are inherited by children and PRIVATE are only used by the target itself and not its dependencies.
The text was updated successfully, but these errors were encountered:
Need to think through the right way to do this. Currently, we have to add depends for everything in the chain, which is a bit obnoxious.
Probably should look at cmake to see what they do -- for cmake target_link_libraries has a concept of PRIVATE/PUBLIC/INTERFACE options, where PUBLIC/INTERFACE options are inherited by children and PRIVATE are only used by the target itself and not its dependencies.
The text was updated successfully, but these errors were encountered: