Aer/.vscode/tasks.json

49 lines
840 B
JSON
Raw Normal View History

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
2019-03-20 19:25:46 +01:00
"label": "Build AerScript Interpreter",
"type": "shell",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
}
},
{
2019-03-20 19:25:46 +01:00
"label": "Clean AerScript Interpreter",
"type": "shell",
"command": "make",
"args": [
"clean"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
}
},
{
2019-03-20 19:25:46 +01:00
"label": "Style AerScript Interpreter Code",
"type": "shell",
"command": "make",
"args": [
"style"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
}
}
]
}