Add tasks for Code

This commit is contained in:
eikendev 2021-01-05 00:27:32 +01:00
parent d9e2ac1ca3
commit f30ee50e99
No known key found for this signature in database
GPG key ID: A1BDB1B28C8EF694

35
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,35 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make build",
"presentation": {
"panel": "shared",
"reveal": "always",
"focus": true
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "test",
"type": "shell",
"command": "make test",
"presentation": {
"panel": "shared",
"reveal": "always",
"focus": true
},
"problemMatcher": [],
"group": {
"kind": "test",
"isDefault": true
}
}
]
}