Skip to content

Commit

Permalink
Merge pull request #17 from benfrankel/vscode-tasks
Browse files Browse the repository at this point in the history
Add basic .vscode/tasks.json
  • Loading branch information
benfrankel authored Jul 5, 2024
2 parents 643a777 + 0c0dcfd commit cebb0e4
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run native dev",
"type": "cargo",
"command": "run",
"options": {
"env": {
"RUST_BACKTRACE": "full"
}
},
"presentation": {
"clear": true
},
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Run native release",
"type": "cargo",
"command": "run",
"args": [
"--release"
],
"presentation": {
"clear": true
},
"problemMatcher": [
"$rustc"
],
"group": "build"
}
]
}

0 comments on commit cebb0e4

Please sign in to comment.