2018-06-08 13:12:17 +00:00
|
|
|
{
|
|
|
|
// 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",
|
2018-11-07 15:30:22 +00:00
|
|
|
"configurations": [{
|
|
|
|
"name": "(lldb) Launch",
|
|
|
|
"type": "cppdbg",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${workspaceFolder}/lokinet",
|
|
|
|
"args": [],
|
|
|
|
"stopAtEntry": false,
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"environment": [],
|
|
|
|
"externalConsole": false,
|
|
|
|
"MIMode": "lldb"
|
|
|
|
},
|
2018-06-08 13:12:17 +00:00
|
|
|
{
|
|
|
|
"name": "(gdb) Launch",
|
|
|
|
"type": "cppdbg",
|
|
|
|
"request": "launch",
|
2018-11-02 17:08:01 +00:00
|
|
|
"program": "${workspaceFolder}/lokinet",
|
2018-06-08 13:12:17 +00:00
|
|
|
"args": [],
|
|
|
|
"stopAtEntry": false,
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"environment": [],
|
|
|
|
"externalConsole": true,
|
|
|
|
"MIMode": "gdb",
|
2018-11-07 15:30:22 +00:00
|
|
|
"setupCommands": [{
|
|
|
|
"description": "Enable pretty-printing for gdb",
|
|
|
|
"text": "-enable-pretty-printing",
|
|
|
|
"ignoreFailures": true
|
|
|
|
}]
|
2018-06-08 13:12:17 +00:00
|
|
|
}
|
|
|
|
]
|
2018-11-07 15:30:22 +00:00
|
|
|
}
|