Merge branch 'iNavFlight:master' into MSP-VTX
[inav.git] / .vscode / tasks.json
blob7be2cd3d1769e5789409a0978c5a073490f3cda5
2     // See https://go.microsoft.com/fwlink/?LinkId=733558
3     // for the documentation about the tasks.json format
4     "version": "2.0.0",
5     "tasks": [
6         {
7             "label": "Build AOCODARCH7DUAL",
8             "type": "shell",
9             "command": "make AOCODARCH7DUAL",
10             "group": "build",
11             "problemMatcher": [],
12             "options": {
13                 "cwd": "${workspaceFolder}/build"
14             }
15         },
16         {
17             "label": "Build AOCODARCH7DUAL",
18             "type": "shell",
19             "command": "make AOCODARCH7DUAL",
20             "group": {
21                 "kind": "build",
22                 "isDefault": true
23             },
24             "problemMatcher": [],
25             "options": {
26                 "cwd": "${workspaceFolder}/build"
27             }
28         }
29         ,
30         {
31             "label": "CMAKE Update",
32             "type": "shell",
33             "command": "cmake ..",
34             "group": "build",
35             "problemMatcher": [],
36             "options": {
37                 "cwd": "${workspaceFolder}/build"
38             }
39         }
40     ]