Added vscode task file
This commit is contained in:
parent
c31ef427b0
commit
c0a09ced65
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"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": {
|
||||||
|
"type": "process",
|
||||||
|
"args": [
|
||||||
|
"--force",
|
||||||
|
{
|
||||||
|
"value": "--sketch=${workspaceRoot}",
|
||||||
|
"quoting": "strong"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"value": "--output=${workspaceRoot}\\out",
|
||||||
|
"quoting": "strong"
|
||||||
|
},
|
||||||
|
"--run"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue