-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwagon.sublime-project
55 lines (55 loc) · 1.04 KB
/
wagon.sublime-project
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
{
"folders":
[
{
"path": ".",
"folder_exclude_patterns": ["target"]
}
],
"debugger_tasks": [
{
"name": "Compile GLLTest",
"working_dir": "${project_path}/gll_test",
"cmd": ["cargo", "build"]
},
{
"name": "Compile GenTest",
"working_dir": "${project_path}/gen_test",
"cmd": ["cargo", "build"]
}
],
"debugger_configurations":
[
{
"type": "lldb",
"request": "launch",
"name": "Cargo launch",
"cargo": {
"args": [
"check",
"--lib"
]
},
"args": [],
"program": "${folder}/target/debug/wagon"
},
{
"type": "lldb",
"request": "launch",
"name": "GLLTest Run",
"pre_debug_task": "Compile GLLTest",
"args": ["input"],
"cwd": "${project_path}/gll_test/",
"program": "${project_path}/gll_test/target/debug/gll_test"
},
{
"type": "lldb",
"request": "launch",
"name": "GenTest Run",
"pre_debug_task": "Compile GenTest",
"args": ["input"],
"cwd": "${project_path}/gen_test/",
"program": "${project_path}/gen_test/target/debug/gen_test"
}
],
}