{ "version": "2.0.0", "options": { "cwd": "${workspaceFolder}/build/" }, "tasks": [ { "label": "cmake", "type": "shell", "command": "cmake", "args": [ ".." ] }, { "label": "make", "group": { "kind": "build", "isDefault": true }, "command": "C:\\Qt\\Qt5.14.2\\Tools\\mingw730_64\\bin\\mingw32-make.exe", "args": [] }, { "label": "Build my project", "dependsOn": [ "cmake", "make" ] } ] }