Add tasks.json for Visual Studio Code

This commit is contained in:
Alexander Krotov
2018-05-22 15:39:07 +03:00
parent 5c379d211b
commit b4a7d5a59e

25
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
// 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": "./waf",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Run tests",
"type": "shell",
"command": "./test.py",
"group": {
"kind": "test",
"isDefault": true
}
}
]
}