Add VSCode launch.json

feature/IndividualCalls
Geoffrey Merck 6 years ago
parent e865a0ab09
commit 76895a7df7

@ -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": "(gdb) Lancer",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/sgs",
"args": ["${workspaceFolder}/sgs.conf"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable GDB Pretty Printing",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
Loading…
Cancel
Save

Powered by TurnKey Linux.