rFactor2_vk_hud/.vscode/launch.json

28 lines
828 B
JSON
Raw Normal View History

2023-01-23 06:21:52 +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 selected unit test",
"cargo": {
"args": [
"test",
// "--no-run",
"test::${selectedText}"
],
// "filter": {
// "name": "vk_layer_rs",
// "kind": "lib"
// }
},
"cwd": "${workspaceFolder}",
"env": {
"RFACTOR_HUD_LOG": "1"
}
},
]
}