添加vscode调试配置文件

This commit is contained in:
zzh 2023-07-27 22:36:55 +08:00
parent 3e8e701029
commit 1641a66d15
2 changed files with 39 additions and 0 deletions

22
.vscode/launch.json vendored 100644
View File

@ -0,0 +1,22 @@
{
// 使 IntelliSense
//
// 访: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"preLaunchTask": "Build",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/minimap2",
"args": ["-x",
"ava-ont",
"-t",
"1",
"/public/home/zzh/work/3gseq/TGM-2021YFF/Acinetobacter_pittii.fastq",
"/public/home/zzh/work/3gseq/TGM-2021YFF/Acinetobacter_pittii.fastq"],
"cwd": "${workspaceFolder}", //
}
]
}

17
.vscode/tasks.json vendored 100644
View File

@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "make -j 8",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}