Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ mixin:
- shared.mixin
- test-linters.mixin
- tsan.mixin
- verbose.mixin
- merge-install.mixin
7 changes: 7 additions & 0 deletions merge-install.mixin
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"build": {
"merge-install": {
"merge-install": "True"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you explain how you use this?

Without the mixin, an invocation would use

colcon build --merge-instal ...

But with the mixin it would be

colcon build --mixin merge-install

to do the exact same thing so I don't think this mixin makes sense.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When you put it this way, it does seem odd. My use case includes other things, like many cmake arguments and so on. I've struggled to add this as an additional option, so I wanted to leave it here as an example.

}
}
}
9 changes: 9 additions & 0 deletions verbose.mixin
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"build": {
"verbose": {
"event-handlers": [
"console_direct+"
]
}
}
}