{ "version": "2.0.0", "tasks": [ { "label": "build", "type": "shell", "command": "cmake", "args": [ "--build", "${workspaceFolder}/build" ], "group": { "kind": "build", "isDefault": true }, "problemMatcher": [] }, { "label": "configure", "type": "shell", "command": "cmake", "args": [ "-S", "${workspaceFolder}", "-B", "${workspaceFolder}/build" ], "problemMatcher": [] } ] }