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", "type": "lldb",
"request": "launch", "request": "launch",
"name": "unittests (lldb)", "name": "unittests (lldb)",
"program": "${workspaceFolder}/build/dap-unittests", "program": "${workspaceFolder}/build/cppdap-unittests",
"cwd": "${workspaceRoot}", "cwd": "${workspaceRoot}",
"args": []
}, },
{ {
"name": "unittests (gdb)", "name": "unittests (gdb)",
"type": "cppdbg", "type": "cppdbg",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/build/dap-unittests", "program": "${workspaceFolder}/build/cppdap-unittests",
"args": [], "args": [],
"stopAtEntry": false, "stopAtEntry": false,
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",