blob: 68560b30c38d35f8a9b6f59dac6365652e69ffb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
// Use Ctrl+Shift+B to run build tasks.
// Or "Run Build Task" in the Command Palette.
"version": "2.0.0",
"tasks": [
{
"label": "ninja",
"type": "shell",
"command": "ninja",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Apply Objdiff Mappings",
"type": "shell",
"command": "python ${workspaceFolder}/tools/custom/apply_objdiff_mappings.py",
},
]
}
|