From b8061957110c694cfefbf10c58fd173f59953ded Mon Sep 17 00:00:00 2001 From: Adriano dos Santos Fernandes Date: Thu, 6 May 2021 14:33:11 -0300 Subject: [PATCH] Update vscode task to new format. --- .vscode/tasks.json | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index af551682d2..b22ca1fc74 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,13 +1,19 @@ { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format - "version": "0.1.0", - "command": "make", - "isShellCommand": true, - "args": [ - "TARGET=Debug", - "engine", - "-j9" - ], - "showOutput": "always" + "version": "2.0.0", + "tasks": [ + { + "label": "make", + "type": "shell", + "command": "make", + "args": [ + "TARGET=Debug", + "engine", + "-j7" + ], + "problemMatcher": [], + "group": "build" + } + ] }