{ "tasks": [ { "type": "shell", "label": "build linux86_64", "command": "./build.sh", "args": [ "linux86_64" ], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true }, "detail": "builds the program for linux x86_64" }, { "type": "shell", "label": "build win86_64", "command": "./build.sh", "args": [ "win86_64" ], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": false }, "detail": "builds the program for windows x86_64" }, { "type": "shell", "label": "build web", "command": "./build.sh", "args": [ "web" ], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": false }, "detail": "builds the program for web using emscripten" } ], "version": "2.0.0" }