vscode: add default build task

This commit is contained in:
Jacek Sieka 2018-08-22 21:43:22 -06:00
parent 986cba578c
commit 592f8bf061
No known key found for this signature in database
GPG Key ID: 6299FEB3EB6FA465
2 changed files with 20 additions and 0 deletions

1
.gitignore vendored
View File

@ -15,3 +15,4 @@ build/
*.la
*.exe
*.dll
VMTests.md

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

@ -0,0 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "nimbus test",
"type": "shell",
"command": "nimble test",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
}
]
}