Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .devcontainer/scripts/bashrc_addition.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Workspace Folder ${SECONDARY_COLOR}$WORKSPACE_FOLDER
${INFO_COLOR}Library Version(s)${PRIMARY_COLOR}
Rust Version ${SECONDARY_COLOR}$(rustc --version)${PRIMARY_COLOR}
Cargo Version ${SECONDARY_COLOR}$(cargo --version)${PRIMARY_COLOR}
Java Version ${SECONDARY_COLOR}$(java --version)${PRIMARY_COLOR}

${INFO_COLOR}Git${PRIMARY_COLOR}
Username ${SECONDARY_COLOR}$(git config user.name)${PRIMARY_COLOR}
Expand Down
42 changes: 42 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'up_transport_iceoryx2_rust'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=up-transport-iceoryx2-rust"
],
"filter": {
"name": "up_transport_iceoryx2_rust",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug example 'subscriber'",
"cargo": {
"args": [
"build",
"--example=subscriber",
"--package=up-transport-iceoryx2-rust"
],
"filter": {
"name": "subscriber",
"kind": "example"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading