espre-c6/.vscode/tasks.json
Thomas Klaehn ab2f440b82 vscode: Fix task executions
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2025-02-12 08:52:34 +01:00

75 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"args": [
"-p",
"lp-core",
"--release"
],
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build"
},
"label": "build lp-core"
},
{
"type": "cargo",
"command": "build",
"args": [
"-p",
"hp-core",
"--release"
],
"dependsOn": [
"build lp-core"
],
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build"
},
"label": "build hp-core"
},
{
"type": "cargo",
"command": "check",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "check"
},
{
"type": "cargo",
"command": "clean",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "clean"
},
{
"type": "cargo",
"command": "run",
"args": [
"-p",
"hp-core",
"--release"
],
"dependsOn": [
"build hp-core"
],
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "run"
}
]
}