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
It's possible to have multiple base-paths currently but it's not possible to have multiple build-base or install-base. I have 2 workspaces, one underlay and one overlay, and I would like to configure different build-base and install-base for them respectively. Something like:
{
"build":
{
"symlink-install": true,
"mixin": ["ccache", "release"],
"base-paths":
[
"/home/tony/underlay_ws/src",
"/home/tony/overlay_ws/src",
],
"build-base": ["/home/tony/underlay_ws/build", "/home/tony/overlay_ws/build"] , # order would matter to match base-paths order
"install-base": ["/home/tony/underlay_ws/install", "/home/tony/overlay_ws/install",
},
}
We should also consider what this would mean for the mixins and potentially other arguments; are they applied to both workspaces or should we also be able to specifiy different mixins for different workspaces.
The text was updated successfully, but these errors were encountered:
tonynajjar
changed the title
Multiple build-base and install-base for multiple base-paths
Feature Request: Multiple build-base and install-base for multiple base-pathsFeb 22, 2024
It's possible to have multiple
base-paths
currently but it's not possible to have multiplebuild-base
orinstall-base
. I have 2 workspaces, one underlay and one overlay, and I would like to configure differentbuild-base
andinstall-base
for them respectively. Something like:We should also consider what this would mean for the mixins and potentially other arguments; are they applied to both workspaces or should we also be able to specifiy different mixins for different workspaces.
The text was updated successfully, but these errors were encountered: