nstool/.vscode/tasks.json

21 lines
362 B
JSON
Raw Normal View History

2018-03-17 08:03:26 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "rebuild",
"type": "shell",
"command": "make rebuild"
}
]
}