This repository has been archived on 2022-12-21. You can view files and clone it, but cannot push or open issues or pull requests.
aprs-trains/.vscode/tasks.json
2022-12-19 20:46:32 -05:00

49 lines
704 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": "rust: cargo run",
"args": [
"--target",
"x86_64-unknown-linux-musl",
"--",
"-c",
"TRAINS",
"-p",
"10410"
]
},
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
"label": "rust: cargo run (dry run)",
"args": [
"--target",
"x86_64-unknown-linux-musl",
"--",
"-c",
"N0CALL",
"-p",
"12345",
"--dry-run"
]
}
]
}