launch.json - fix name of unittests to launch

This commit is contained in:
Ben Clayton 2020-01-05 08:33:33 +00:00
parent d19d8f83c9
commit 1be9bb6712

5
.vscode/launch.json vendored
View File

@ -13,14 +13,15 @@
"type": "lldb",
"request": "launch",
"name": "unittests (lldb)",
"program": "${workspaceFolder}/build/dap-unittests",
"program": "${workspaceFolder}/build/cppdap-unittests",
"cwd": "${workspaceRoot}",
"args": []
},
{
"name": "unittests (gdb)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/dap-unittests",
"program": "${workspaceFolder}/build/cppdap-unittests",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",