Skip to content

Commit

Permalink
Added task
Browse files Browse the repository at this point in the history
  • Loading branch information
nbourre committed Sep 19, 2023
1 parent 04dd1b9 commit 45edf3f
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"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=${fileWorkspaceFolder}",
"--output=${fileWorkspaceFolder}/out",
"--run"
],
"windows": {
"args": [
"--force",
"--sketch=${fileWorkspaceFolder}",
"--output=${fileWorkspaceFolder}\\out",
"--run"
]
}
}
]
}

0 comments on commit 45edf3f

Please sign in to comment.