rlox/.vscode/launch.json

26 lines
751 B
JSON
Raw Permalink Normal View History

2023-01-20 16:10:03 +01:00
{
// 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",
2024-09-03 16:57:47 +02:00
"name": "Debug executable 'rlox'",
2023-01-20 16:10:03 +01:00
"cargo": {
"args": [
"build",
2024-09-03 16:57:47 +02:00
"--bin=rlox",
2023-01-20 16:10:03 +01:00
"--package=rlox2"
],
"filter": {
2024-09-03 16:57:47 +02:00
"name": "rlox",
2023-01-20 16:10:03 +01:00
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
2024-09-03 16:57:47 +02:00
}