lyra-engine/.vscode/launch.json

88 lines
2.6 KiB
JSON
Executable File

{
// 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}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'lyra-scripting'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=lyra-scripting",
"--",
"--nocapture"
],
"filter": {
"name": "lyra-scripting",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}/lyra-scripting"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'lyra-ecs'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=lyra-ecs",
"command::tests::deferred_commands",
"--",
"--exact --nocapture"
],
"filter": {
"name": "lyra-ecs",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}/lyra-ecs"
}
]
}