This repository has been archived on 2021-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-49/.vscode/tasks.json
Marcelo Geldres bd1ae248f5 Pause Button
Pause button and screen work
2021-10-02 16:53:08 -04:00

60 lines
905 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "Rust: Build Code"
},
{
"type": "cargo",
"command": "clippy",
"args": [
"--fix"
],
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "Rust: Clippy Fix"
},
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "Rust: Run Game",
"env": {
"RUST_LOG": "debug"
}
},
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "Rust: Run Game - TRACE",
"env": {
"RUST_LOG": "trace"
}
},
{
"type": "cargo",
"subcommand": "build",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "Rust: cargo build - ludum-dare-49"
}
]
}