Add support for Visual Studio Code.

This commit is contained in:
Matthias Mailänder
2020-06-13 23:39:03 +02:00
committed by Pavel Penev
parent cada396733
commit 7261322e41
4 changed files with 84 additions and 0 deletions

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

@@ -0,0 +1,13 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "make",
"args": ["all"],
"windows": {
"command": "make.cmd"
}
}
]
}