Files
bevy-tools/example-tasks.json
2026-07-31 18:33:44 +02:00

36 lines
959 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
// Copy to .vscode/tasks.json and replace "bevydemo" with your PROJECT name.
"version": "2.0.0",
"tasks": [
{
"label": "Run",
"type": "shell",
"command": "cargo run",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build & Run",
"type": "shell",
"command": "make clean && make build && ./bin/bevydemo",
"problemMatcher": []
},
{
"label": "Build WASM",
"type": "shell",
"command": "make wasm",
"problemMatcher": []
},
{
"label": "Make build",
"type": "shell",
"command": "make build"
}
]
}