From b12aecad631b1d41fd178beb0d8893885a03ae3b Mon Sep 17 00:00:00 2001 From: gsemaj Date: Tue, 11 Jul 2023 13:51:56 -0400 Subject: [PATCH] Fix vscode launch configs for Windows --- .vscode/launch.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 5032c6b..05c6d49 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -12,7 +12,14 @@ "name": "Debug (Windows)", "type": "cppvsdbg", "request": "launch", - "program": "${workspaceFolder}/bin/winfusion.exe", + "program": "${workspaceFolder}/bin/Debug/winfusion.exe", + "cwd": "${workspaceFolder}" + }, + { + "name": "Release (Windows)", + "type": "cppvsdbg", + "request": "launch", + "program": "${workspaceFolder}/bin/Release/winfusion.exe", "cwd": "${workspaceFolder}" } ]