|
10 | 10 | "problemMatcher": [] |
11 | 11 | }, |
12 | 12 | { |
13 | | - "label": "Bananas: Build", |
| 13 | + "label": "Bananas: Build (Release)", |
14 | 14 | "type": "shell", |
15 | 15 | "command": "${workspaceFolder}/scripts/build.sh", |
16 | 16 | "group": { "kind": "build", "isDefault": true }, |
17 | 17 | "presentation": { "reveal": "always", "panel": "shared" }, |
18 | 18 | "problemMatcher": [] |
19 | 19 | }, |
| 20 | + { |
| 21 | + "label": "Bananas: Build (Debug)", |
| 22 | + "type": "shell", |
| 23 | + "command": "${workspaceFolder}/scripts/build.sh DEBUG=1", |
| 24 | + "group": "build", |
| 25 | + "presentation": { "reveal": "always", "panel": "shared" }, |
| 26 | + "problemMatcher": [] |
| 27 | + }, |
20 | 28 | { |
21 | 29 | "label": "Bananas: Clean", |
22 | 30 | "type": "shell", |
|
34 | 42 | "problemMatcher": [] |
35 | 43 | }, |
36 | 44 | { |
37 | | - "label": "Bananas: Build & Play", |
| 45 | + "label": "Bananas: Build (Release) & Play", |
| 46 | + "dependsOrder": "sequence", |
| 47 | + "dependsOn": ["Bananas: Build (Release)", "Bananas: Play"], |
| 48 | + "group": "test", |
| 49 | + "presentation": { "reveal": "always", "panel": "shared" }, |
| 50 | + "problemMatcher": [] |
| 51 | + }, |
| 52 | + { |
| 53 | + "label": "Bananas: Build (Debug) & Play", |
38 | 54 | "dependsOrder": "sequence", |
39 | | - "dependsOn": ["Bananas: Build", "Bananas: Play"], |
| 55 | + "dependsOn": ["Bananas: Build (Debug)", "Bananas: Play"], |
40 | 56 | "group": "test", |
41 | 57 | "presentation": { "reveal": "always", "panel": "shared" }, |
42 | 58 | "problemMatcher": [] |
|
0 commit comments