lyra-engine/.vscode/launch.json

45 lines
1.4 KiB
JSON
Raw Normal View History

{
// 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 lyra testbed",
"cargo": {
"args": [
"build",
"--manifest-path", "${workspaceFolder}/examples/testbed/Cargo.toml"
//"--bin=testbed",
],
"filter": {
"name": "testbed",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}/examples/testbed"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'lyra-engine'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=lyra-engine",
"--package=lyra-engine"
],
"filter": {
"name": "lyra-engine",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}