mirror of
https://github.com/xusun0623/exam_code_for_408.git
synced 2026-02-03 02:14:02 +08:00
22 lines
781 B
JSON
22 lines
781 B
JSON
{
|
||
// 使用 IntelliSense 了解相关属性。
|
||
// 悬停以查看现有属性的描述。
|
||
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
||
"version": "0.2.0",
|
||
"configurations": [
|
||
{
|
||
"name": "(lldb) 启动",
|
||
"preLaunchTask": "C/C++: clang++ 生成活动文件",//调试前执行的任务,就是之前配置的tasks.json中的label字段
|
||
"type": "cppdbg",
|
||
"request": "launch",
|
||
"program": "${workspaceFolder}/.out/${fileBasenameNoExtension}.out",
|
||
"args": [],
|
||
"stopAtEntry": false,
|
||
"cwd": "${fileDirname}",
|
||
"environment": [],
|
||
"externalConsole": false,
|
||
"MIMode": "lldb"
|
||
}
|
||
]
|
||
}
|