Skip to content

Commit

Permalink
chore: add lib-test launch
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasanchez committed Apr 13, 2022
1 parent c593369 commit 2cf9390
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Lib-Test",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/shared/lib_test.out",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

0 comments on commit 2cf9390

Please sign in to comment.