sw_perf/.vscode/launch.json

32 lines
1.1 KiB
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "sw-perf",
"preLaunchTask": "Build",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/sw_perf",
"args": [
"/home/zzh/sw/small/q_s.fa",
"/home/zzh/sw/small/t_s.fa",
"/home/zzh/sw/small/i_s.txt"
],
"cwd": "${workspaceFolder}", // 当前工作路径:当前文件所在的工作空间
},
{
"name": "sw-perf-discrete",
"preLaunchTask": "Build",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/sw_perf_discrete",
"args": [
"all"
],
"cwd": "${workspaceFolder}", // 当前工作路径:当前文件所在的工作空间
}
]
}