This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/.vscode/launch.json

26 lines
906 B
JSON
Raw Normal View History

2021-10-03 02:28:37 +00:00
{
"version": "0.2.0",
"configurations": [
{
2021-10-21 12:58:58 +00:00
"name": "g++.exe",
2021-10-03 02:28:37 +00:00
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
2021-12-02 16:09:33 +00:00
"cwd": "C:/Project/mingw64/bin",//自己的编译器路径,自行修改
2021-10-03 02:28:37 +00:00
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
2021-12-02 16:09:33 +00:00
"miDebuggerPath": "C:\\Project\\mingw64\\bin\\gdb.exe",//自己的gdb路径自行修改
2021-10-03 02:28:37 +00:00
"setupCommands": [
{
2021-10-29 08:50:06 +00:00
"description": "gdb",
2021-10-03 02:28:37 +00:00
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
2021-12-02 16:09:33 +00:00
"preLaunchTask": "Compile"//可以随意更改保证与tasks.json的label相同
2021-10-03 02:28:37 +00:00
}
]
}