19 lines
689 B
JSON
19 lines
689 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "C++ Launch (GDB)",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"targetArchitecture": "x86",
|
|
"program": "${workspaceRoot}\\${fileBasename}.exe",
|
|
"miDebuggerPath":"D:\\mingw64\\bin\\gdb.exe",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceRoot}",
|
|
"externalConsole": true,
|
|
"preLaunchTask": "g++"
|
|
}
|
|
]
|
|
}
|
|
|