-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.vimspector.json
More file actions
executable file
·84 lines (84 loc) · 2.71 KB
/
.vimspector.json
File metadata and controls
executable file
·84 lines (84 loc) · 2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"configurations": {
"main_colors": {
"adapter": "vscode-cpptools",
"filetypes": [
"cpp",
"c",
"cu",
"objc",
"rust"
],
"configuration": {
"request": "launch",
"program": "${workspaceRoot}/build/bin/sbwt_search",
"args": ["colors", "-i", "test_objects/themisto_example/GCA_combined_d1.tcolors", "-q", "test_objects/themisto_example/GCA_queries.txt", "-o", "GCA_colors_out", "-m", "80000000"],
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"stopAtEntry": true
}
},
"main_index": {
"adapter": "vscode-cpptools",
"filetypes": [
"cpp",
"c",
"cu",
"objc",
"rust"
],
"configuration": {
"request": "launch",
"program": "${workspaceRoot}/build/bin/sbwt_search",
"args": ["index", "-i", "test_objects/search_test_index.sbwt", "-q", "test_objects/full_pipeline/index_search/fasta1.fna", "-o", "debug_out.txt"],
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"stopAtEntry": true
}
},
"test": {
"adapter": "vscode-cpptools",
"filetypes": [
"cpp",
"c",
"cu",
"objc",
"rust"
],
"configuration": {
"request": "launch",
"program": "${workspaceRoot}/build/bin/test_main",
"args": [],
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"stopAtEntry": true
}
},
"verify": {
"adapter": "vscode-cpptools",
"filetypes": [
"cpp",
"c",
"cu",
"objc",
"rust"
],
"configuration": {
"request": "launch",
"program": "${workspaceRoot}/build/bin/verify",
"args": [ "-i", "a2.bool", "-x", "bool", "-o", "a2.txt", "-y", "ascii" ],
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"stopAtEntry": true
}
}
}
}