{ "version": "2.0.0", "options": { "cwd": "${workspaceFolder}/build" }, "tasks": [ { "type": "shell", "label": "cmake", "command": "cmake", "args": [ ".." ] }, { "label": "make", "group": { "kind": "build", "isDefault": true }, "command":"make", "args": [ ] }, { "label": "build", "dependsOrder": "sequence", "dependsOn":[ "cmake", "make" ] } ] }