This repository has been archived on 2022-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-50/.vscode/tasks.json
2022-03-22 10:48:08 -04:00

36 lines
523 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "rust: cargo build"
},
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
"label": "Launch Game"
},
{
"type": "cargo",
"command": "doc",
"args": [
"-p",
"game_logic",
"--no-deps",
"--document-private-items"
],
"problemMatcher": [
"$rustc"
],
"label": "Regenerate RustDoc"
}
]
}