vscode initial configuration (#10911)

This commit is contained in:
Daniel Agar
2018-12-04 23:11:36 -05:00
committed by GitHub
parent 3a036021ba
commit a5fa3eda30
7 changed files with 122 additions and 2 deletions

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

@@ -0,0 +1,16 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "jmavsim",
"type": "shell",
"command": "make posix_sitl_default jmavsim",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}