Files
dataStructureForC/.vscode/launch.json
2019-06-26 00:36:57 +08:00

24 lines
737 B
JSON
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"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++"  
}
]
}