From 2931fa5cfe2708b65ec77f4b496542af68cdb647 Mon Sep 17 00:00:00 2001 From: Hezkore Date: Fri, 19 Nov 2021 17:42:44 +0100 Subject: [PATCH] Fixed launch cwd path for Linux --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 82ce041f..f10f0de4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,7 +3,7 @@ { "MIMode": "gdb", "args": [], - "cwd": "${workspaceFolder}", + "cwd": "${workspaceFolder}/bin/linux-amd64-librw_gl3_glfw-oal/Debug", "environment": [], "externalConsole": false, "name": "(gdb) Launch (Linux Debug)", @@ -24,7 +24,7 @@ { "MIMode": "gdb", "args": [], - "cwd": "${workspaceFolder}", + "cwd": "${workspaceFolder}/bin/linux-amd64-librw_gl3_glfw-oal/Release", "environment": [], "externalConsole": false, "name": "(gdb) Launch (Linux Release)",