mirror of
https://github.com/by777/dataStructureForC.git
synced 2026-02-03 10:03:14 +08:00
24 lines
737 B
JSON
24 lines
737 B
JSON
{
|
||
"version": "0.2.0",
|
||
"configurations": [
|
||
|
||
|
||
|
||
|
||
{
|
||
"name": "C++ Launch (GDB)",
|
||
"type": "cppdbg",
|
||
"request": "launch",
|
||
"targetArchitecture": "x86",
|
||
"program": "${workspaceRoot}/a.out",
|
||
"miDebuggerPath":"C:\\MinGW\\bin\\gdb.exe",
|
||
"args": [],
|
||
"cwd":"${workspaceRoot}",
|
||
"stopAtEntry": false,
|
||
|
||
"externalConsole": true,
|
||
"preLaunchTask": "g++"
|
||
}
|
||
]
|
||
}
|