Fix VSCode launch config
This commit is contained in:
34
.vscode/tasks.json
vendored
34
.vscode/tasks.json
vendored
@@ -10,9 +10,11 @@
|
||||
* so we can invoke it from the debug launcher.
|
||||
*/
|
||||
"label": "Cargo Build (debug)",
|
||||
"type": "process",
|
||||
"type": "shell",
|
||||
"command": "cargo",
|
||||
"args": ["build"],
|
||||
"args": [
|
||||
"build"
|
||||
],
|
||||
"problemMatcher": [
|
||||
"$rustc"
|
||||
],
|
||||
@@ -23,9 +25,12 @@
|
||||
},
|
||||
{
|
||||
"label": "Cargo Build (release)",
|
||||
"type": "process",
|
||||
"type": "shell",
|
||||
"command": "cargo",
|
||||
"args": ["build", "--release"],
|
||||
"args": [
|
||||
"build",
|
||||
"--release"
|
||||
],
|
||||
"problemMatcher": [
|
||||
"$rustc"
|
||||
],
|
||||
@@ -34,8 +39,11 @@
|
||||
{
|
||||
"label": "Cargo Build Examples (debug)",
|
||||
"type": "process",
|
||||
"command": "cargo",
|
||||
"args": ["build","--examples"],
|
||||
"command": "shell",
|
||||
"args": [
|
||||
"build",
|
||||
"--examples"
|
||||
],
|
||||
"problemMatcher": [
|
||||
"$rustc"
|
||||
],
|
||||
@@ -43,9 +51,13 @@
|
||||
},
|
||||
{
|
||||
"label": "Cargo Build Examples (release)",
|
||||
"type": "process",
|
||||
"type": "shell",
|
||||
"command": "cargo",
|
||||
"args": ["build","--examples", "--release"],
|
||||
"args": [
|
||||
"build",
|
||||
"--examples",
|
||||
"--release"
|
||||
],
|
||||
"problemMatcher": [
|
||||
"$rustc"
|
||||
],
|
||||
@@ -53,9 +65,11 @@
|
||||
},
|
||||
{
|
||||
"label": "Cargo Clean",
|
||||
"type": "process",
|
||||
"type": "shell",
|
||||
"command": "cargo",
|
||||
"args": ["clean"],
|
||||
"args": [
|
||||
"clean"
|
||||
],
|
||||
"problemMatcher": [],
|
||||
"group": "build"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user