lokinet/.vscode/launch.json

37 lines
1011 B
JSON
Raw Normal View History

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",
"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",
"setupCommands": [{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}]
2018-06-08 13:12:17 +00:00
}
]
}