Files
sunny9898/task8/_ref/FlowField/.vscode/tasks.json
louiscklaw 5637fbf94f update,
2025-02-01 02:07:58 +08:00

34 lines
744 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run Sketch",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"command": "${config:processing.path}",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated"
},
"args": [
"--force",
"--sketch=${workspaceRoot}",
"--output=${workspaceRoot}/out",
"--run"
],
"windows": {
"args": [
"--force",
"--sketch=${workspaceRoot}",
"--output=${workspaceRoot}\\out",
"--run"
]
}
}
]
}