Skip to content

Commit

Permalink
add .vscode/launch.json to support debuging in VSCode.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhopper2003 authored and ycool committed Apr 4, 2018
1 parent c340373 commit 8be88a8
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ Launch",
"type": "cppdbg",
"request": "launch",
// you can change the "planning" to your module name.
"program": "${workspaceRoot}/bazel-bin/modules/planning/planning",
// you can change "localhost:1111" to another "IP:port" name.
"miDebuggerServerAddress": "localhost:1111",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"linux": {
"MIMode": "gdb"
},
"osx": {
"MIMode": "gdb"
},
"windows": {
"MIMode": "gdb"
}
}
]
}

0 comments on commit 8be88a8

Please sign in to comment.