From 1be9bb6712a04eac2ebc2997ccd786bcabf9c45e Mon Sep 17 00:00:00 2001 From: Ben Clayton Date: Sun, 5 Jan 2020 08:33:33 +0000 Subject: [PATCH] launch.json - fix name of unittests to launch --- .vscode/launch.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 9159b8e..9a85195 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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}",