File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 12
12
"name" : " Debug (QEMU)" ,
13
13
"servertype" : " qemu" ,
14
14
"cwd" : " ${workspaceRoot}" ,
15
- "preLaunchTask" : " cargo build " ,
15
+ "preLaunchTask" : " Cargo Build (debug) " ,
16
16
"runToMain" : true ,
17
17
"executable" : " ./target/thumbv7m-none-eabi/debug/{{project-name}}" ,
18
18
/* Run `cargo build --example hello` and uncomment this line to run semi-hosting example */
27
27
"name" : " Debug (OpenOCD)" ,
28
28
"servertype" : " openocd" ,
29
29
"cwd" : " ${workspaceRoot}" ,
30
- "preLaunchTask" : " cargo build " ,
30
+ "preLaunchTask" : " Cargo Build (debug) " ,
31
31
"runToMain" : true ,
32
32
"executable" : " ./target/thumbv7em-none-eabihf/debug/{{project-name}}" ,
33
33
/* Run `cargo build --example itm` and uncomment this line to run itm example */
Original file line number Diff line number Diff line change 9
9
* but we need to provide a label for it,
10
10
* so we can invoke it from the debug launcher.
11
11
*/
12
- "label" : " cargo build " ,
12
+ "label" : " Cargo Build (debug) " ,
13
13
"type" : " process" ,
14
14
"command" : " cargo" ,
15
15
"args" : [" build" ],
22
22
}
23
23
},
24
24
{
25
- "label" : " cargo build -- release" ,
25
+ "label" : " Cargo Build ( release) " ,
26
26
"type" : " process" ,
27
27
"command" : " cargo" ,
28
28
"args" : [" build" , " --release" ],
32
32
"group" : " build"
33
33
},
34
34
{
35
- "label" : " cargo build --examples " ,
35
+ "label" : " Cargo Build Examples (debug) " ,
36
36
"type" : " process" ,
37
37
"command" : " cargo" ,
38
38
"args" : [" build" ," --examples" ],
42
42
"group" : " build"
43
43
},
44
44
{
45
- "label" : " cargo build --examples -- release" ,
45
+ "label" : " Cargo Build Examples ( release) " ,
46
46
"type" : " process" ,
47
47
"command" : " cargo" ,
48
48
"args" : [" build" ," --examples" , " --release" ],
52
52
"group" : " build"
53
53
},
54
54
{
55
- "label" : " cargo clean " ,
55
+ "label" : " Cargo Clean " ,
56
56
"type" : " process" ,
57
57
"command" : " cargo" ,
58
58
"args" : [" clean" ],
You can’t perform that action at this time.
0 commit comments