diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 7861bb7..f50a809 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -7,11 +7,25 @@ "label": "Build", "type": "shell", "command": "make", - "args": ["-j3"], + "args": [ + "-j3" + ], "group": { "kind": "build", "isDefault": true - } + }, + "problemMatcher": [] + }, + { + "label": "Build Tests", + "type": "shell", + "command": "make", + "args": [ + "-j3", + "tests" + ], + "group": "build", + "problemMatcher": [] } ] } \ No newline at end of file