36 lines
959 B
JSON
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"
|
|
}
|
|
]
|
|
}
|