29 lines
861 B
JSON
29 lines
861 B
JSON
|
|
{
|
||
|
|
"version": "0.2.0",
|
||
|
|
"configurations": [
|
||
|
|
{
|
||
|
|
"name": "Launch Debug (Windows)",
|
||
|
|
"preLaunchTask": "rust: cargo build",
|
||
|
|
"type": "cppvsdbg",
|
||
|
|
"request": "launch",
|
||
|
|
"console": "externalTerminal",
|
||
|
|
"program": "${workspaceFolder}/target/debug/edit",
|
||
|
|
"cwd": "${workspaceFolder}",
|
||
|
|
"args": [
|
||
|
|
"${workspaceFolder}/src/bin/edit/main.rs"
|
||
|
|
],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Launch Debug (GDB/LLDB)",
|
||
|
|
"preLaunchTask": "rust: cargo build",
|
||
|
|
"type": "cppdbg",
|
||
|
|
"request": "launch",
|
||
|
|
"program": "${workspaceFolder}/target/debug/edit",
|
||
|
|
"cwd": "${workspaceFolder}",
|
||
|
|
"args": [
|
||
|
|
"${workspaceFolder}/src/bin/edit/main.rs"
|
||
|
|
],
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|