Add test application build and run configuration.

This commit is contained in:
Bartosz Taudul
2022-04-30 18:24:22 +02:00
parent d0be4fa784
commit 6d6b7c0989
2 changed files with 24 additions and 0 deletions

12
.vscode/launch.json vendored
View File

@@ -42,5 +42,17 @@
"externalConsole": false,
"preLaunchTask": "Build update tool"
},
{
"name": "Launch test application",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/test/tracy_test",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/test",
"environment": [],
"externalConsole": false,
"preLaunchTask": "Build test application"
},
]
}