mirror of
https://github.com/hubaldv/bioz-host-rs.git
synced 2025-12-06 05:11:17 +00:00
Created basic sinus output via postcard rpc.
This commit is contained in:
50
.vscode/tasks.json
vendored
50
.vscode/tasks.json
vendored
@@ -4,11 +4,13 @@
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "cargo run",
|
||||
"label": "cargo run cli",
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"run",
|
||||
"--bin",
|
||||
"main_cli",
|
||||
// "--release",
|
||||
],
|
||||
"group": {
|
||||
@@ -17,11 +19,43 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "cargo run release",
|
||||
"label": "cargo run cli release",
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"run",
|
||||
"--bin",
|
||||
"main_cli",
|
||||
"--release",
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
// "isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "cargo run gui",
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"run",
|
||||
"--bin",
|
||||
"main_gui",
|
||||
// "--release",
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
// "isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "cargo run gui release",
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"run",
|
||||
"--bin",
|
||||
"main_gui",
|
||||
"--release",
|
||||
],
|
||||
"group": {
|
||||
@@ -41,12 +75,12 @@
|
||||
"type": "shell",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "cargo rerun",
|
||||
"dependsOn": ["Terminate All Tasks", "delay", "cargo run"],
|
||||
"dependsOrder": "sequence",
|
||||
"group": "build",
|
||||
}
|
||||
// {
|
||||
// "label": "cargo rerun",
|
||||
// "dependsOn": ["Terminate All Tasks", "delay", "cargo run"],
|
||||
// "dependsOrder": "sequence",
|
||||
// "group": "build",
|
||||
// }
|
||||
],
|
||||
"inputs": [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user