37 lines
940 B
JSON
37 lines
940 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build",
|
|
"command": "make",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/rd7tf/"
|
|
},
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new",
|
|
"focus": true
|
|
},
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Format",
|
|
"command": "python ${workspaceFolder}/clang-format.py",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/"
|
|
},
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new",
|
|
"focus": true
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |