wgsl-preprocessor/.vscode/launch.json

84 lines
2.5 KiB
JSON
Raw Permalink 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",
2024-08-20 00:27:40 +00:00
"name": "Debug wgsl_preprocessor",
"cargo": {
"args": [
"build",
//"--manifest-path", "${workspaceFolder}/examples/testbed/Cargo.toml"
2024-08-20 00:27:40 +00:00
"--bin=wgsl_preprocessor",
],
"filter": {
2024-08-20 00:27:40 +00:00
"name": "wgsl_preprocessor",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
2024-08-09 01:29:52 +00:00
},
{
"type": "lldb",
"request": "launch",
2024-08-20 00:27:40 +00:00
"name": "Debug unit tests in executable 'wgsl_preprocessor'",
2024-08-09 01:29:52 +00:00
"cargo": {
"args": [
"test",
"--no-run",
2024-08-20 00:27:40 +00:00
"--bin=wgsl_preprocessor",
"--package=wgsl_preprocessor"
2024-08-09 01:29:52 +00:00
],
"filter": {
2024-08-20 00:27:40 +00:00
"name": "wgsl_preprocessor",
2024-08-09 01:29:52 +00:00
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
2024-08-20 00:27:40 +00:00
{
"type": "lldb",
"request": "launch",
"name": "Debug specific test in executable 'wgsl_preprocessor'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=wgsl_preprocessor",
"tests::import_struct_with_imported_fields",
"--",
"--exact --nocapture"
],
"filter": {
"name": "wgsl_preprocessor",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
2024-08-09 01:29:52 +00:00
/* {
"type": "lldb",
"request": "launch",
2024-08-20 00:27:40 +00:00
"name": "Test wgsl_preprocessor",
2024-08-09 01:29:52 +00:00
"cargo": {
"args": [
"test",
2024-08-20 00:27:40 +00:00
"--bin=wgsl_preprocessor",
2024-08-09 01:29:52 +00:00
],
"filter": {
2024-08-20 00:27:40 +00:00
"name": "wgsl_preprocessor",
2024-08-09 01:29:52 +00:00
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
} */
]
}