You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
665 B
17 lines
665 B
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug with Ninja", // 配置名称
|
|
"type": "cppvsdbg", // 调试器类型(MSVC 使用 cppvsdbg)
|
|
"request": "launch", // 启动调试
|
|
"program": "${workspaceFolder}/build/SingularityJudger.exe", // 可执行文件路径
|
|
"args": [], // 传递给程序的参数
|
|
"stopAtEntry": false, // 是否在程序入口处暂停
|
|
"cwd": "${workspaceFolder}/build", // 工作目录
|
|
"environment": [], // 环境变量
|
|
"externalConsole": true, // 使用外部控制台
|
|
"preLaunchTask": "build" // 调试前执行的任务(与 tasks.json 中的 label 对应)
|
|
}
|
|
]
|
|
}
|