Skip to content

Commit

Permalink
Check in .vscode/tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
benfrankel committed Dec 2, 2023
1 parent 2f507ff commit 4e18daf
Showing 1 changed file with 87 additions and 0 deletions.
87 changes: 87 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run native dev",
"type": "cargo",
"command": "run",
"args": [
"--features=native_dev,bevy/x11"
],
"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",
"--features=native,bevy/x11"
],
"presentation": {
"clear": true
},
"problemMatcher": [
"$rustc"
],
"group": "build"
},
{
"label": "Debug native dev",
"type": "cargo",
"command": "run",
"args": [
"--bin=debug",
"--features=native_dev,bevy/x11,debug_dump"
],
"options": {
"env": {
"RUST_BACKTRACE": "full"
}
},
"presentation": {
"clear": true
},
"problemMatcher": [
"$rustc"
],
"group": "build"
},
{
"label": "Debug native release",
"type": "cargo",
"command": "run",
"args": [
"--release",
"--bin=debug",
"--features=native,bevy/x11,debug_dump"
],
"options": {
"env": {
"RUST_BACKTRACE": "full"
}
},
"presentation": {
"clear": true
},
"problemMatcher": [
"$rustc"
],
"group": "build"
}
]
}

0 comments on commit 4e18daf

Please sign in to comment.