Build tool with musl for now

This commit is contained in:
2022-09-11 20:50:15 +02:00
parent aa717886b4
commit 92954ce53e
4 changed files with 44 additions and 9 deletions

View File

@@ -19,7 +19,7 @@
{
"label": "cargo",
"type": "shell",
"command": "./run_cargo ${input:project} ${input:cargo cmd} ${input:build cfg}",
"command": "./run_cargo ${input:project} ${input:cargo cmd} ${input:build cfg} ${input:cargo target}",
"group": {
"kind": "build",
}
@@ -45,6 +45,12 @@
"options": ["build", "run", "check", "clean"],
"default": "build",
"description": "cargo command to run"
},
{
"id": "cargo target",
"type": "pickString",
"options": ["windows", "linux"],
"description": "The target for the tool to build"
}
]
}