Make exe launch url instead of explorer

This commit is contained in:
Philip
2022-01-01 21:46:15 +01:00
parent 9d1f2799da
commit f60a591180
2 changed files with 75 additions and 10 deletions
+45
View File
@@ -0,0 +1,45 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'boilr'",
"cargo": {
"args": [
"build",
"--bin=boilr",
"--package=boilr"
],
"filter": {
"name": "boilr",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'boilr'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=boilr",
"--package=boilr"
],
"filter": {
"name": "boilr",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}