diff --git a/.gitignore b/.gitignore index ca15e9218..b5b7d10a4 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ build/ *.la *.exe *.dll +VMTests.md diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 000000000..ad0abc9b6 --- /dev/null +++ b/.vscode/tasks.json @@ -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" + ] + } + ] +} \ No newline at end of file