lyra-engine/lyra-ecs/.vscode/launch.json

48 lines
1.4 KiB
JSON
Raw Normal View History

2023-05-25 04:11:16 +00: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",
"name": "Debug executable 'lyra-ecs'",
"cargo": {
"args": [
"build",
"--bin=lyra-ecs",
"--package=lyra-ecs"
],
"filter": {
"name": "lyra-ecs",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'lyra-ecs'",
"cargo": {
"args": [
"test",
"--no-run",
2023-11-25 23:43:11 +00:00
"--package=lyra-ecs",
"query::resource::tests::query",
2023-11-25 23:43:11 +00:00
"--",
"--exact",
2023-11-25 23:43:11 +00:00
"--nocapture"
2023-05-25 04:11:16 +00:00
],
"filter": {
"name": "lyra-ecs",
2023-12-04 04:14:27 +00:00
"kind": "lib"
2023-05-25 04:11:16 +00:00
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}