postsack/.vscode/tasks.json

24 lines
313 B
JSON
Raw Normal View History

2021-10-02 17:44:22 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
"args": [
"--bin",
"gui",
"--",
"/tmp/",
"/tmp/db2.sql"
],
"label": "rust: cargo run gui",
"group": {
"kind": "build",
"isDefault": true
},
}
]
}