distributed_physics_test/.vscode/tasks.json

42 lines
894 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Dev build",
"type": "cargo",
"command": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": false
},
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Release build",
"type": "cargo",
"command": "build",
"args": ["--release", "--no-default-features"],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": false
},
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}