2023-04-14 04:22:17 +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": [
|
2024-09-28 16:32:37 +00:00
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Debug lyra lua-scripting",
|
|
|
|
"cargo": {
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"--manifest-path", "${workspaceFolder}/examples/lua-scripting/Cargo.toml"
|
|
|
|
//"--bin=testbed",
|
|
|
|
],
|
|
|
|
"filter": {
|
|
|
|
"name": "lua-scripting",
|
|
|
|
"kind": "bin"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"args": [],
|
|
|
|
"cwd": "${workspaceFolder}/examples/lua-scripting"
|
|
|
|
},
|
2023-04-14 04:22:17 +00:00
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
2023-10-05 15:42:24 +00:00
|
|
|
"name": "Debug lyra testbed",
|
2023-04-14 04:22:17 +00:00
|
|
|
"cargo": {
|
|
|
|
"args": [
|
|
|
|
"build",
|
2023-10-05 15:42:24 +00:00
|
|
|
"--manifest-path", "${workspaceFolder}/examples/testbed/Cargo.toml"
|
|
|
|
//"--bin=testbed",
|
2023-04-14 04:22:17 +00:00
|
|
|
],
|
|
|
|
"filter": {
|
2023-10-05 15:42:24 +00:00
|
|
|
"name": "testbed",
|
2023-04-14 04:22:17 +00:00
|
|
|
"kind": "bin"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"args": [],
|
2023-10-05 15:42:24 +00:00
|
|
|
"cwd": "${workspaceFolder}/examples/testbed"
|
2023-04-14 04:22:17 +00:00
|
|
|
},
|
2024-07-12 18:58:18 +00:00
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Debug lyra shadows",
|
|
|
|
"cargo": {
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"--manifest-path", "${workspaceFolder}/examples/shadows/Cargo.toml"
|
|
|
|
//"--bin=shadows",
|
|
|
|
],
|
|
|
|
"filter": {
|
|
|
|
"name": "shadows",
|
|
|
|
"kind": "bin"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"args": [],
|
|
|
|
"cwd": "${workspaceFolder}/examples/shadows"
|
|
|
|
},
|
2024-05-19 16:56:03 +00:00
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Debug example simple_scene",
|
|
|
|
"cargo": {
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"--manifest-path", "${workspaceFolder}/examples/simple_scene/Cargo.toml"
|
|
|
|
//"--bin=testbed",
|
|
|
|
],
|
|
|
|
"filter": {
|
|
|
|
"name": "simple_scene",
|
|
|
|
"kind": "bin"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"args": [],
|
|
|
|
"cwd": "${workspaceFolder}/examples/simple_scene"
|
|
|
|
},
|
2023-04-14 04:22:17 +00:00
|
|
|
{
|
|
|
|
"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}"
|
2023-12-26 19:12:53 +00:00
|
|
|
},
|
2024-01-05 01:52:47 +00:00
|
|
|
{
|
|
|
|
"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"
|
|
|
|
},
|
2023-12-26 19:12:53 +00:00
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Debug unit tests in executable 'lyra-ecs'",
|
|
|
|
"cargo": {
|
|
|
|
"args": [
|
|
|
|
"test",
|
|
|
|
"--no-run",
|
|
|
|
"--lib",
|
|
|
|
"--package=lyra-ecs",
|
2024-02-24 16:09:26 +00:00
|
|
|
"command::tests::deferred_commands",
|
2023-12-26 19:12:53 +00:00
|
|
|
"--",
|
|
|
|
"--exact --nocapture"
|
|
|
|
],
|
|
|
|
"filter": {
|
|
|
|
"name": "lyra-ecs",
|
|
|
|
"kind": "lib"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"args": [],
|
|
|
|
"cwd": "${workspaceFolder}/lyra-ecs"
|
2024-03-03 21:21:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Debug unit tests in executable 'lyra-scene'",
|
|
|
|
"cargo": {
|
|
|
|
"args": [
|
|
|
|
"test",
|
|
|
|
"--no-run",
|
|
|
|
"--lib",
|
|
|
|
"--package=lyra-scene",
|
|
|
|
//"command::tests::deferred_commands",
|
|
|
|
//"--",
|
|
|
|
//"--exact --nocapture"
|
|
|
|
],
|
|
|
|
"filter": {
|
|
|
|
"name": "lyra-scene",
|
|
|
|
"kind": "lib"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"args": [],
|
|
|
|
"cwd": "${workspaceFolder}/lyra-scene"
|
2023-04-14 04:22:17 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|